Is it possible if the input image is the result of Image Segmentation in CNN Method ?
Hello,
I just want to ask about Input Image in CNN Method
I want to recognize type of Wood based Wood Fiber with CNN (Wood fiber can be detected with Edge Detection Method)
But, all i know is, the input image of CNN usually is the original image, can I make the input image of CNN is the result of Image Segmentation (Edge Detection) ??
So i will make the process like this
Input Image (Wood) => Grayscale + Smoothing => Edge Detection => Threshold => Morphological (Erosion/Dilation) => CNN
And what do you think ? Is it accurate or not ?
Thanks a lot
God bless you all
Yes you can, however, CNNs are usually better off with continuous-tone input images because of their convolutional nature.
can you explain the nature of your cnn ? what does it do, exactly ?
maybe all your preprocessing is counter-productive here ?
+1 to both comments - i would advice to not preprocess("feature loss") the data but train on original image directly. Its also easier this way (less code / less complexity). And thx for cleaning up berak.
Input Image (Wood) => Grayscale + Smoothing => Edge Detection => Threshold => Morphological (Erosion/Dilation) => CNN
After that, the predict process will be like this
Test Image => Grayscale + Smoothing => Edge Detection => Threshold => Morphological => Predict
Is that make sense ?