vishwas h s
visvesvaraya technological university
Followers: 0 Following: 0
Estadística
8 Preguntas
0 Respuestas
CLASIFICACIÓN
34.066
of 300.706
REPUTACIÓN
1
CONTRIBUCIONES
8 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
50.0%
VOTOS RECIBIDOS
1
CLASIFICACIÓN
of 21.045
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 170.244
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
Hi all...i am writing a code to calculate the PSNR of two images....but i am getting an error as 'Attempted to access A1(1,401); index out of bounds because size(A1)=[400,400].'..Here A1 is the R component of image.. The code is shown below
clc; close all; clear all; A = imread('F:\EXPERIMENTION RESULTS\fruits_ORIGINAL.jpg'); A = imresize(A ,[400 40...
más de 11 años hace | 2 respuestas | 0
2
respuestasPregunta
hi all.. i am writing a program to convert image to text... but i am getting an error " Invalid file identifier. Use fopen to generate a valid file identifier."...can pls get me out of it...i am attaching the code with it...
clc; clear all; img=imread('F:\TEST PICTURES\car.jpg'); %Read a Gray image from workspace img=rgb2gray(img); [r c] = size(im...
más de 11 años hace | 1 respuesta | 0
1
respuestaPregunta
hi all... i am writing a program to histogram equalize particular bit planes in an image..but i am getting an error in the 1st bit plane..Attempted to access a(241,320); index out of bounds because size(a)=[240,320]. Error in BITPLANE (line 59)
clc; close all; clear all; a = imread('F:\TEST PICTURES\car.jpg'); a = rgb2gray(a); [m n] = size(a); % t...
más de 11 años hace | 1 respuesta | 0
1
respuestaPregunta
Hi..i am trying to use the function "blockproc" for histogram equalization of an image blockwise...but i am gettin an error....
a = imread('C:\Users\Public\Pictures\Sample Pictures\image14.jpg'); a = rgb2gray(a); b = blockproc(a,[8,8],histeq); ...
casi 12 años hace | 1 respuesta | 0
1
respuestaPregunta
hi..i am getting an error while using the "axis" function....the value that i gave was [0 255 0 1] ....0 to 255 are grey scale values of image on the x axis and 0 to 1 the cdf on the y axis....
x = linspace(0,1,255) plot(x,cdf_data) axis(0 , 255 , 0 , 1) set (gca, 'xtick', 0:1:255) set (gca, 'ytick', 0:0.2:1) ...
casi 12 años hace | 1 respuesta | 0
1
respuestaPregunta
hi..i am writing the code for recursive mean separate histogram equalization..i am getting an error called "Undefined function 'averpixcal' for input arguments of type 'double'."when calling the function 'averpixcal'..code is attached for reference
//----main module-----// PicOri=imread('C:\Users\Public\Pictures\Sample Pictures\image14.jpg'); % if isgray(PicOri)==0 ...
casi 12 años hace | 2 respuestas | 0
2
respuestasPregunta
hi ..i am writing a code for quadrant dynamic histogram equalization...but i am getting an error while mapping back to the original image as 'Attempted to access map(0); index must be a positive integer or logical.'..i have attached the code
clc; close all; clear all; WAAD_img= imread('C:\Users\Public\Pictures\Sample Pictures\image14.jpg'); WAAD_img= rgb...
casi 12 años hace | 2 respuestas | 1
2
respuestasPregunta
i am writing the matlab code for bi-histogram equalization for the color image...i am using the 'function' to extend to all three planes i.e, RG&B ...but i am getting error 'Function definitions are not permitted in this context.'.
clc; close all; clear all; function y = BBHE(x); sz = size(x); o_mean = round(mean(x(:))); ...
casi 12 años hace | 1 respuesta | 0
