Skip to content
Snippets Groups Projects
Commit 9fb13542 authored by ac_fx's avatar ac_fx
Browse files

fixed ljsctc param setting

parent 3129a8a5
Branches
No related tags found
No related merge requests found
...@@ -77,12 +77,12 @@ ljsctc.gtConfig='GT'; ...@@ -77,12 +77,12 @@ ljsctc.gtConfig='GT';
% classifier to predict segParams. we'll use all the tiffs returned by this % classifier to predict segParams. we'll use all the tiffs returned by this
% next path string. try e.g. dir(ljsctc.gtTrainingPath) to verify it's the % next path string. try e.g. dir(ljsctc.gtTrainingPath) to verify it's the
% man_seg tiffs % man_seg tiffs
gtTraining=[ljsctc.rawImagePath(1:strfind(ljsctc.rawImagePath,baseName)+length(baseName)) ... gtRoot=[ljsctc.rawImagePath(1:strfind(ljsctc.rawImagePath,baseName)+length(baseName))];
'training/**/man_seg*.tif']; gtTraining=[gtRoot 'training/**/man_seg*.tif'];
ljsctc.gtTrainingPath=gtTraining; ljsctc.gtTrainingPath=gtTraining;
if strcmp(trainOrChallenge,'training') if strcmp(trainOrChallenge,'training')
% this is passed to CTC scoring code % this is passed to CTC scoring code
ljsctc.gtEvalPath = '/g/gRaw/ctc2021/2d_DIC-C2DH-HeLa_training/DIC-C2DH-HeLa/01_GT'; ljsctc.gtEvalPath = [gtRoot '_training/' datasetSpecifier '/' movieID '_GT'];
else else
% this is passed to CTC scoring code % this is passed to CTC scoring code
ljsctc.gtEvalPath = []; ljsctc.gtEvalPath = [];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment