photo

Poonam


Attivo dal 2013

Followers: 0   Following: 0

Messaggio

Professional Interests: image processing

Statistica

All
MATLAB Answers

43 Domande
0 Risposte

Cody

0 Problemi
9 Soluzioni

RANK
18.088
of 300.381

REPUTAZIONE
2

CONTRIBUTI
43 Domande
0 Risposte

ACCETTAZIONE DELLE RISPOSTE
23.26%

VOTI RICEVUTI
2

RANK
 of 20.941

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
41.581
of 168.477

CONTRIBUTI
0 Problemi
9 Soluzioni

PUNTEGGIO
100

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Thankful Level 3
  • Solver

Visualizza badge

Feeds

Visto da

Domanda


how Image segmentation is useful in area of image compression,object identification and multimedia application
Sir please could you provide me in detail explaination of how segmentation is useful in Image Compression ,Identifying objectsan...

oltre 10 anni fa | 1 risposta | 0

1

risposta

Domanda


how will be mean brightness of color image will be formulated in matlab
color image is of three channels, so how to calculate mean brightness of the image Do i need to separate each channel of color...

oltre 10 anni fa | 1 risposta | 0

1

risposta

Domanda


what will the formula for mean intensity value of RGB image
gray scale image intensity value is m=mean2(I) then what will be of RGB image

oltre 10 anni fa | 1 risposta | 0

1

risposta

Domanda


How write this image with plotted boundary in a folder
figure;imshow(Img); title('Hill Climbing Segmentation'); axis image; % Make sure image is not artificially stretched b...

oltre 10 anni fa | 1 risposta | 0

1

risposta

Domanda


HELP to resolve this code
m=original color image en=enhanced color image have written code for measure absolute mean brightness error(AMBE) f...

oltre 10 anni fa | 1 risposta | 0

1

risposta

Domanda


I want the output of RAG code output to appear as given in the image,but appear something else please help me to get the following output
function varargout = imRAG(img, varargin) %IMRAG Region adjacency graph of a labeled image % % Usage: % ADJ = ...

oltre 10 anni fa | 0 risposte | 0

0

risposte

Domanda


help to resolve my this GUI code
btnNumber=11; labelPos=[left+3*controlWidth+0.06 top-2*controlHeight controlWidth+0.08 controlHeight-0.005]; callbackStr...

oltre 10 anni fa | 1 risposta | 0

1

risposta

Domanda


how to resolve this code
figure;imshow(Ims); hold on for k = 1:length(B) boundary = B{k}; plot(boundary(:,2), boundary(:,1), 'k', '...

oltre 10 anni fa | 1 risposta | 0

1

risposta

Domanda


how to find edges of my segmented images
<</matlabcentral/answers/uploaded_files/26942/segmentedenhanceimage.png>> This is my mean shift segmented image i want this...

oltre 10 anni fa | 0 risposte | 0

0

risposte

Domanda


Getting following error,help to rectify it
function [y, MS] = meanShiftPixCluster(x,hs,hr,th,plotOn) % FUNCTION: meanShiftPixCluster implements the classi...

oltre 10 anni fa | 1 risposta | 0

1

risposta

Domanda


why am I getting this error
function [Results]=ComputeFMeasureMultiSeg(DBpath,SegResultsSubPath,SysType) %Compute the F-score for multi segments ...

oltre 10 anni fa | 1 risposta | 0

1

risposta

Domanda


function kmeans is not able to process uint8 what should i do?
I am using kmeans function and getting following error ??? Error using ==> plus Integers can only be combined with integers...

oltre 10 anni fa | 1 risposta | 0

1

risposta

Domanda


What is multiscale/pyramid algoithm
what is pyramied/multiscale like algorithm in image segmentation

oltre 10 anni fa | 0 risposte | 0

0

risposte

Domanda


Error while making plot of precision -recall curve in this code where m i going wrong?
function [J,D,rfp,rfn]=segevaluate(o,s) % gets label matrix for one tissue in segmented and ground truth % and re...

oltre 10 anni fa | 0 risposte | 0

0

risposte

Domanda


getting following error,help to rectify this
function [Inc Knc] = Nc(I,SI,SX,r,sNcut,sArea) %% ncutImageSegment [nRow, nCol,c] = size(I); ...

circa 11 anni fa | 1 risposta | 0

1

risposta

Domanda


what will be the solution for this error
function idx=nomc(meas) W=SimilarMatrix(meas,1); D=diag(sum(W)); L=D-W; Lsym=(D^(-1/2))*L*(D^(-1/2)); [ev ...

circa 11 anni fa | 1 risposta | 0

1

risposta

Domanda


What is wrong in this code
function [jaccard_Idx,jaccardDist]=jacarrd_coefficient(imgorig,imgseg) { %check for logical image if ~islogical(i...

circa 11 anni fa | 1 risposta | 0

1

risposta

Domanda


getting cell contents reference from non cell object error for following code
if (length(A) < sArea || length(B) < sArea) || ncut > sNcut Seg{1} = Seg{i}; %#ok<NASGU> Id{1} = id; %#ok<...

quasi 12 anni fa | 1 risposta | 0

1

risposta

Domanda


Mean shift and normalized cut
What does mean shift segmentation mean with example? what is normalized cut segmentation? I have read lot of papers but coul...

quasi 12 anni fa | 1 risposta | 0

1

risposta

Domanda


how to match both the side?
Sir, If LHS is 3D image and RHS is 2D then how to match both the side eg. outimg(:,:,1)=out1img how to convert the ...

quasi 12 anni fa | 1 risposta | 0

1

risposta

Domanda


how to solve the following error in the code?
clc; close all; % clear all; inImg = imread('C:\Users\Poonam\Desktop\MATLAB\R2008a\bin\matlabimage\lotus.jpg'); ...

quasi 12 anni fa | 0 risposte | 0

0

risposte

Domanda


Getting the following error,please help to solve it
y_outImg = blkproc(dctImg, [8 8], 'idct2(x)'); %#ok<NASGU> ycbcrOutImg(:,:,1) = y_outImg; * * *error* * * ??? S...

quasi 12 anni fa | 1 risposta | 0

1

risposta

Domanda


How to separate the given segmented image based on the region produced and save as separate image
<</matlabcentral/answers/uploaded_files/4980/flowers.jpg>> Here is the image of segmentation I have done, Now I want to s...

quasi 12 anni fa | 1 risposta | 0

1

risposta

Domanda


Getting an Error and is not displaying Image,How to solve this?
%% meanshift parameter I was trying to make Region Adjacency Graph from MEAN SHIFT SEGMENTED Image Got some Errors .Here is ...

circa 12 anni fa | 2 risposte | 1

2

risposte

Domanda


Is ther any mistake ,as result is not being displayed ,please help out
<</matlabcentral/answers/uploaded_files/319/bunny.jpg>> * *MY PROJECT IS ON COLOR IMAGE SEGMENTATION ON MEAN SHIFT AND NORMAL...

circa 12 anni fa | 0 risposte | 0

0

risposte

Domanda


Only want to take segmented image as input ,how can i
<</matlabcentral/answers/uploaded_files/139/butterfly%20image.jpg>> * *Below is the result I just want to take input only seg...

circa 12 anni fa | 1 risposta | 0

1

risposta

Domanda


Matrix dimension must agree error in the code,need a solution
function [clusters, result_image, clusterized_image] = kmeanssegment(im,k) %histogram calculation hist_value = zeros...

circa 12 anni fa | 1 risposta | 0

1

risposta

Domanda


Not getting desired result ,any mistakes made by me in code,help me to rectify if any
* * * *This is mean shift segmentation code on color image* * * * function y = meanShiftseg(x,hs,hf,th,plot...

circa 12 anni fa | 0 risposte | 0

0

risposte

Domanda


stuck here ,please help me out,if there are some more mistakes give the solution
This is the part of mean shift segmentation code while ~done weightAccum = 0; yAccum = 0; ...

circa 12 anni fa | 1 risposta | 0

1

risposta

Domanda


Have I done some mistake in the following line
function y = meanShiftseg(x,hs,hr,th,plotOn) %% Argument Check if nargin < 3 error('please type help for function...

circa 12 anni fa | 1 risposta | 0

1

risposta

Carica altro