- Visual Media Processing Using Matlab Beginner's Guide
- George Siogkas
- 482字
- 2021-08-06 16:38:00
Time for action – making a custom object eraser function
This time we are going to make a more complex tool. We'll write a function that accepts an image as an input, prompts the user to select a ROI (using either one of the two methods described previously) and then prompts the user to select a pixel with the color to be used for the erasing process. Finally, it will use the color of the pixel chosen by the user to erase the area defined by the mask. The code will be something like as follows (we'll call it FreehandMasking.m
):
function[output] = FreehandMasking(input,method) % Function that performs masking of a user-defined ROI % Inputs: % input - Input image % method – ROI selection (1: roipoly, 2: imfreehand) % Output: % output - Output image (masked) switch method case 1 mask = roipoly(input);););% Select ROI using roipoly case 2 figure, imshow(input) h = imfreehand; % Select ROI using imfreehand pos = wait(h); [rows,columns] = size(input); mask = poly2mask(pos(:,1),pos(:,2),rows,columns); end pix = impixel(input); % Select pixel with eraser color output = input; % Set output equal to input output(mask) = pix(1); % Perform masking to erase selected object
- Now let's test our code. We will try to erase two parts of the middle rock of our examples, using different colors. Let's first type in the commands to crop the middle rock:
>> img = imread('3rocks.jpg'); >> rock = rgb2gray(img); >> rock = imcrop(rock)
- Once we crop the area we want to use, we must call the function we just made, twice. We will now use the
roipoly
function for the part of the rock that is below the water level in the image and theimfreehand
function for the part of the rock that is above the water level. First, let's mask the part below sea level (we will double-click on a pixel from the sky region to select its color for erasing the rock):>> rock2 = FreehandMasking(rock,1);
- Now, we will mask the part above sea level (we will double-click on a pixel from the sea for erasing the rock):
>> rock3 = FreehandMasking(rock2,2);
- Let's see the final result:
What just happened?
The tool we just finished making is more sophisticated than the others so far. It prompts twice for user input; once for the ROI selection using the predefined method (given as input) and once for the selection of the color of the eraser. We took advantage of this functionality to repeat the example of erasing the middle rock, this time using two colors, one for each chosen ROI of the rock. The result is even better than before, since the part of the rock lying below the sea level got erased using a darker color, hence camouflaging the rock more efficiently. In the following chapters, you will see more exciting examples using the ROI selection techniques that we presented in this section.
- 零點起飛學Xilinx FPG
- Arduino入門基礎教程
- 新型電腦主板關鍵電路維修圖冊
- Mastering Delphi Programming:A Complete Reference Guide
- 辦公通信設備維修
- 深入淺出SSD:固態存儲核心技術、原理與實戰
- 現代辦公設備使用與維護
- Unity 5.x Game Development Blueprints
- 基于Apache Kylin構建大數據分析平臺
- 基于PROTEUS的電路設計、仿真與制板
- IP網絡視頻傳輸:技術、標準和應用
- 基于網絡化教學的項目化單片機應用技術
- Arduino項目開發:智能生活
- 計算機組裝與維護(慕課版)
- 施耐德M241/251可編程序控制器應用技術