How can I measure how many indentation or foldings are present in the three objects presented below?
http://s20.postimage.org/s1zoc1r8t/indent.png
Hi,
Maybe you can perform an analisys over the "Shape signature" like here http://basic-eng.blogspot.com.es/2006/01/signature-of-binary-objects.html
Once you have the signature, you can characterize each object (signature) and identify it by training a classifier as ANN or something like this.
If there are many features, they can be reduced using a PCA
Good luck
You can try convex polygon
Approach 1:
Find the difference between binary image and its convex hull & apply morphology to remove small regions & count the remaining no. of indents or foldings
____________________________________________________
%% Matlab program to check indents or foldings in binary image
clc;close all; clear all; warning off;
I=imread('indent.png');
BW=im2bw(I);
BW=imclearborder(BW);
figure,imshowpair(I,BW,'montage');
BW_convhull=bwconvhull(BW,'objects');
indent=xor(BW,BW_convhull);
figure,imshowpair(BW_convhull,indent,'montage')
indent_final=bwareaopen(indent,100); % remove small regions
figure,imshowpair(I,indent_final,'montage');
L=labelmatrix(bwconncomp(BW_convhull));
s=regionprops(L,'BoundingBox');
L1=bwlabel(imcrop(indent_final,s(1).BoundingBox));
L2=bwlabel(imcrop(indent_final,s(2).BoundingBox));
L3=bwlabel(imcrop(indent_final,s(3).BoundingBox));
disp('No. of indents in three objects respectively are:')
disp([max(L1(:)),max(L2(:)),max(L3(:))]);
_____________________________________________________
Result
No. of indents in three objects respectively are:
2 1 1
Approach 2:
Check http://syntacticsalt.com/2013/01/11/finding-dents-in-an-blobby-shape/
Found some useful blogs for you - http://mathminers.com/2016/05/27/image-analysis-using-tensor-flow/
http://mathminers.com/2016/05/18/face-recognition-analysis-using-python/
How can I find the confusion matrix for a three class problem and then find specificity, sensitivity and accuracy from them.
01 February 2013 346 6 View
I have a problem of counting objects. Suppose I have the below image (below link) http://s20.postimage.org/bah41jkml/test1.jpg which I got after segmentation. How can I count the small circles...
31 December 2012 7,910 14 View
Is cross validation necessary in neural network training and testing.
09 October 2012 6,121 8 View
Hiiiii everyone! I have an enquiry on statistical analysis. I was looking for many forum and it's still cannot solve my problem. I want to compare means of two groups of data but only with two...
03 March 2021 8,796 3 View
I am on the lookout for the Enhanced Yellow Fluorescent Protein (Aequorea victoria) DNA sequence. Does anyone know where I can find it? Thank you in advance
03 March 2021 3,568 1 View
Hi, I want to start testing pitfall trap to obtain ants samples, but I need to conduct molecular analysis on those insects. So, what kind of fluid can I use? Ethanol expires too early and I need...
03 March 2021 5,978 5 View
I have selected brain tumor images ...but now found that already lots of research done n this topic.
03 March 2021 5,774 3 View
What's the best way to measure growth rates in House sparrow chicks from day 2 to day 10? Since, the growth curve from day 2 to 10 won't be like the "Logistic curve" it might not follow logistic...
03 March 2021 1,401 3 View
I have conducted and published a systematic review and meta-analysis research with the topic related to public health and health pomotion (protocol was registed in PROSPERO). Now we want to...
03 March 2021 8,920 3 View
dear community, my model is based feature extraction from non stationary signals using discrete Wavelet Transform and then using statistical features then machine learning classifiers in order to...
03 March 2021 6,994 5 View
I'm involved in a study of odor control technologies for municipal wastewater treatment plant. One of the control options involves a chemical 2-stage (acid/alkaline) packed bed scrubber. The...
03 March 2021 3,661 2 View
I just wanted to check if I need to run a linear regression separately if I am using PROCESS MACRO to run mediation analysis. Thank you.
02 March 2021 4,359 3 View
If the detection range is in ng/ml but the reference range is in ug/ml for a molecule or protein in serum or plasma .how to dilute and what is the initial volume to be taken for quantitative analysis
02 March 2021 7,670 3 View