How to use Mask the Source image in vision.AlphaBlender?
3 次查看(过去 30 天)
显示 更早的评论
I tried using this as suggested in Mathworks help but its showing error. Halphablender=vision.AlphaBlender('MaskSource','Input port','Mask','BinaryMask','LocationSource', 'Input port'); Its displaying The MaskSource property is not relevant in this configuration of the System object. Can someone please help me with this problem
0 个评论
采纳的回答
Clive Fox
2016-11-2
编辑:Walter Roberson
2017-6-22
I had the same issue but MAthwork Tech gave the answer below:
Thank you for contacting MathWorks Technical Support.
The issue you are facing is because to use the variable 'mask', it has to be defined previously. Executing the following commands demonstrates the role of the mask parameter:
>> % load images
>> I1 = im2single(imread('blobs.png'));
>> I2 = im2single(imread('circles.png'));
>> % plot original images
>> figure
>> subplot(1,2,1);
>> imshow(I1);
>> subplot(1,2,2);
>> imshow(I2);
>> % full mask
>> halphablend = vision.AlphaBlender('Operation', 'Binary mask', 'MaskSource', 'Input port');
>> mask = ones(size(I2));
>> J1 = step(halphablend, I1, I2, mask);
>> % upper left corner of the mask is set to 0s
>> mask(1:end/2,1:end/2) = 0;
>> J2 = step(halphablend, I1, I2, mask);
>> % plot
>> figure;
>> imshow(J1);
>> figure;
>> imshow(J2);
2 个评论
cui,xingxing
2022-9-17
The above example program should be integrated into the official documentation, however the official documentation for the vision.AlphaBlender function example is too sketchy and should be replaced.
更多回答(1 个)
Muhammad Danish
2019-1-8
Still showing error known as
Error using AlphaBlender/step
The Mask input must be a vector or a matrix.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!