luzhi / cellsegmentation_TIP2015

Code for the paper "An Improved Joint Optimization of Multiple Level Set Functions for the Segmentation of Overlapping Cervical Cells" published on IEEE Transactions on Image Processing
30 stars 21 forks source link

Hi #2

Open NoHateAnymore opened 5 years ago

NoHateAnymore commented 5 years ago

Error using bitshift ASSUMEDTYPE must be an integer type name.

错误使用 bitshift ASSUMEDTYPE 必须为整数类型名称。

出错 getmapping (line 76) j = bitset(bitshift(i,1,samples),1,bitget(i,samples)); %rotate left

出错 TrainGMMSceneSegmentation (line 42) MAPPING = getmapping(8,'riu2');

出错 Runner_inOne (line 196) [ gmm_model_cytoClump, gmm_model_cytobackground ] = TrainGMMSceneSegmentation( imCytoSet, GMMCytoClumpMaskSet, ...

出错 demo (line 76) Runner_inOne(DSOption, './ims/EDF/','./ims/EDF/', ...

How can I solve this problem?Thanks.

qqcan1520 commented 5 years ago

j = bitset(bitshift(i,1,samples),1,bitget(i,samples)); when i turn it to j = bitset(bitshift(i,samples),1,bitget(i,samples)); there is no problem

jiaqixuac commented 5 years ago

It seems that get_mapping.m has updated. Refer to http://www.cse.oulu.fi/wsgi/CMV/Downloads/LBPMatlab?action=AttachFile&do=view&target=getmapping.m and https://github.com/adikhosla/feature-extraction/commit/290f3e54cfcb319ca6d1a82f8a0cea4fc31190f8.

jiangyangbo commented 4 years ago

thanks ,jiaqixuac!