답변 있음
Streaming a URL from VLC to MATLAB
yes,sir,may be make one http server to get video stream and transfer to image,then use client to request the data

4년 초과 전 | 1

답변 있음
how to display an image
yes,sir,may be use figure(11); clf; set(gcf, 'Position', get(0,'Screensize')); for n= 1: length(propied) BBs= propied(n)...

4년 초과 전 | 0

답변 있음
Is there a way to segment this image into 3 parts, even though the colours are so similar?
yes,sir,may be use kmeans or watershed clc; clear all; close all; img = imread('https://www.mathworks.com/matlabcentral/answ...

4년 초과 전 | 0

| 수락됨

답변 있음
How Can I embed the length of my secret message in the special bytes of the cover image
yes,sir,may be use base64 to encode message,and use lsb method to embed the string into image matrix

4년 초과 전 | 0

답변 있음
Invalid training data. For image, sequence-to-label, and feature classification tasks, responses must be categorical.
yes,sir,please use the follow code to test imds1 = transform(imds,@(x)imgaussfilt(x,2)); %change to imds1 = imageDatastor...

4년 초과 전 | 0

| 수락됨

답변 있음
GUI - Error when trying to program the second slide bar for the upper limit for variable hue in image processing (lower limit succeeded)
yes,sir,use Rik method,modify as clc; clear all; close all; RGB_Image_Re = imread('https://ww2.mathworks.cn/matlabcentral/answ...

4년 초과 전 | 0

답변 있음
Call a folder from desktop and use images inside it
% read [filename, pathname, ~] = uigetfile( ... { '*.bmp;*.jpg;*.tif;*.png;*.gif','All Image Files';... '*.*', 'all ...

4년 초과 전 | 0

답변 있음
How to determine height of a particular color in an image?
clc; clear all; close all; img = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/817024/image.png'); jm...

4년 초과 전 | 0

답변 있음
How to create executable file for pretrained model Using GUI
yes,sir,when use gui transfer to exe,offen use mcc,and now suggest use applicationCompiler may be use web api to generate http ...

4년 초과 전 | 0

답변 있음
Index exceeds the number of array elements
clc clear all close all format long g; format compact; im1 = imread('https://ww2.mathworks.cn/matlabcentral/answers/uploa...

4년 초과 전 | 0

답변 있음
Mapping two sets of co-ordinates with two different colours onto blank white screen
yes,sir,may be use clc clear all close all Screen = 255*ones(1024,1280,3); r1 = [randi([1 1000],1,1500)', randi([1 1000],...

4년 초과 전 | 1

| 수락됨

답변 있음
Apply a non defined noise to an image
yes,sir,may be define the noise matrix and add to image ,such as x = imread('carmeraman.tif'); nx = double(x) + 18*randn(siz...

4년 초과 전 | 0

답변 있음
Split the license plate letters
yes,sir,may be use clc; clear all; close all; img = imread('https://ww2.mathworks.cn/matlabcentral/answers/uploaded_files/8073...

4년 초과 전 | 0

답변 있음
Using TCPIP, snapshots of webcam are not being sent from server APP to client.
yes,may be use http to build server and client process

4년 초과 전 | 1

| 수락됨

답변 있음
Adding Drunk effect to images of a dataset
yes,sir,may be use the image list to cover this behaviour,and make it to batch process,such as 3D input

4년 초과 전 | 0

답변 있음
Detecting Contour of bubble
clc; clear all; close all; I = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/814649/image.jpeg') ; I ...

4년 초과 전 | 0

답변 있음
How to display vid variable in the form of image from mat file?
yes,sir,may be use the reshape and display as image,such as clc; clear all; close all; load A1_Anya-lips.mat for i = 1 : siz(...

4년 초과 전 | 0

답변 있음
The number of observations must be a positive integer greater than one.
yes,sir,may be numel(imds) is smaller than 20,so please use cvp = cvpartition(numel(imds),'HoldOut',1/numel(imds));

4년 초과 전 | 1

| 수락됨

답변 있음
Reconstruct image with coefficients after thresholding
clc; clear all; close all; I = imread('cameraman.tif'); I2 = imnoise(I, 'poisson'); I3=data_filter(I2); figure; montage({I,...

4년 초과 전 | 0

답변 있음
Index exceeds the number of array elements. Index must not exceed 0.
sir,may be check the data folder,such as clc; clear all; fpath='/MATLAB Drive/HGG'; filepath=fullfile(fpath,'A'); imageDi...

4년 초과 전 | 0

답변 있음
how to assign the output of trained Pattern Recognition Neural Network to a class for each instant
sir,may be find the max index to get the result,such as % assign the max value of the array to a specified class and rest value...

4년 초과 전 | 0

답변 있음
Split image by the label and drop to the subfolder
clc; clear all; close all; datapath='C:\Users\FarHad\Downloads\Compressed\ODIRK\preprocessed_images'; % Two-class Data path m...

4년 초과 전 | 0

| 수락됨

답변 있음
Geotif image appears darker
yes,sir,may be use imtool to adjust data

4년 초과 전 | 0

답변 있음
Detect voids in FRC by Image Processing Toolbox
sir,may be upload image file to do some analysis

4년 초과 전 | 0

답변 있음
How to do a maximum rank filter
clc; clear all; close all; M = [203 167 233 113 222 232; 79 176 39 27 22 46; 135 191 211 256 102 67; 42 115 137 ...

4년 초과 전 | 0

| 수락됨

답변 있음
How I can read image with PPM format without imread and design PPM reader ?
yes,sir,may be upload the ppm file to do some analysis

4년 초과 전 | 1

답변 있음
how to calculate texture parameters
yes,sir,may be use graycomatrix、graycoprops to do texture analysis

4년 초과 전 | 0

답변 있음
photos to movie
yes,sir,let us use the imgFilePath jpgs to avi file,such as function Images2Video(imgFilePath, filename_out) if nargin < 2 ...

4년 초과 전 | 0

답변 있음
reduce cell size of bivariante diagram
clc; clear all; close all; BC= [ 0 0 0.149 0.524 0.717 0.268 0.275 0.340 0.330 0.943 0.623; 0 0 0.402 5.518 9.337 4.833 1....

4년 초과 전 | 0

답변 있음
Exporting images (png) through export_fig - painfully slow
yes,sir,may be use getframe or print,such as f=getframe(gcf); f=frame2im(f); imwrite(f, './result.tif'); or print(gcf,'-dp...

4년 초과 전 | 0

더 보기