I have an image like this:
img
and I wanted to fill the bottom part using a mask like this as the location of seed points:
mask
This is what I tried but didn't work:
img = imread('img.jpg'); maskImg = imread('mask.png');
[Gmag, Gdir] = imgradient(img,'sobel');
mask = imbinarize(maskImg);
[rows,columns] = find(mask);
bw = imfill(Gmag, [rows(:) columns(:)]);
figure, imshow(bw);
The error message is:
Function IMFILL expected input number 2, CONN, to be a valid connectivity specifier. A nonscalar connectivity specifier must be 3-by-3-by- ... -by-3.
How can I fill the road part of the image above?
Not great and not highly reproducible for a variety of images but maybe something interesting can be pulled from this mess of rudimentary image processing techniques.
The colour of the black unmasked portions can be changed prior to or afterwards. Complementary statements can be used to change the white and black regions.
Four Types of Combinations
White Portion Filled
Black Portion Filled
Using MATLAB version: R2019b