Comparing Image wih histogram
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
hi, I have a histgram, I want to travel through each patch of image and compare with histogram, if the patchsize is greater than threshold value make those pixel white else black. to get Patches I am using 'blockproc' I dont think whether Or not it could work for this situation.
fun = @(blk) std2(blk.data) * ones(size(blk.data));
imblk = blockproc(im, [patchsz patchsz], fun);
[m1 n1 nc] = size(imblk);
but I Think this would Also effect the Image Patches that is not needed, Just Want travel through Each patch in its original state, and if Image Pach Size > threshold(histogram) Set that Patch White else Black,
Regards
0 Commenti
Risposta accettata
Image Analyst
il 14 Giu 2013
I don't understand what you're asking. Is the threshold going to change on a black-by-block basis? If not, simply do
binaryImage = grayImage > thresholdValue;
Next, your function is doing the standard deviation filter, which is done by stdfilt(), but it moves the window over a pixel at a time and not in "jumps" like blockproc does. This should give a smoother looking image while blockproc will give a blocky (bad) looking image.
2 Commenti
Image Analyst
il 14 Giu 2013
You can just do what I said:
binaryImage = grayImage > thresholdValue;
however it's not clear how those patches where the histogram is to be computed are chosen (they seem to imply it's by manually drawing the patches), and if the threshold computed from those patches is applied to the whole image, or just to those patches. Those questions would need to be answered before the solution is complete.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!