Statistics
RANK
258,758
of 301,421
REPUTATION
0
CONTRIBUTIONS
4 Questions
1 Answer
ANSWER ACCEPTANCE
25.0%
VOTES RECEIVED
0
RANK
of 21,269
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 174,475
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Discussions
AVERAGE NO. OF LIKES
Feeds
Question
In code1 a delaunay triangulated mesh is generated. In code2 instead of image i want to process the mesh that is generated in code1. is it possible? I want to convert the mesh into an image
*CODE 1:* a=imread('IMD003.bmp'); %imshow(a) se = strel('disk',11); rgbImage=imclose(a,se); ID = im2double(rgbI...
8 years ago | 0 answers | 0
0
answersQuestion
'Function 'subsindex' is not defined for values of class 'cell'.these error occurs in my code
trainingData=xlsread('new_training.xlsx'); inputTable = trainingData; predictorNames = {'convex_area', 'filled_area', 's...
8 years ago | 1 answer | 0
1
answerQuestion
how to perform HSV thresholding in HSV image in mathlab?
I need to detect the cancerous skin from healthy skin.I convert the RGB image into HSV image.now i want to apply the threshold v...
8 years ago | 1 answer | 0
1
answerQuestion
I performed YCBCR thresholding in RGB image using color thresholding app.it gives the image in the form like [bg,rgb].now how to perform HSV normalization in these image?how to represent these image[bg,rgb] as single image?
function [BW,maskedRGBImage] = createMask(RGB) I = rgb2ycbcr(RGB); channel1Min = 0.000; channel1Max = 255.000; cha...
8 years ago | 1 answer | 0
