Risposto
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

oltre 4 anni fa | 1

Risposto
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)...

oltre 4 anni fa | 0

Risposto
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...

oltre 4 anni fa | 0

| accettato

Risposto
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

oltre 4 anni fa | 0

Risposto
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...

oltre 4 anni fa | 0

| accettato

Risposto
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...

oltre 4 anni fa | 0

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

oltre 4 anni fa | 0

Risposto
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...

oltre 4 anni fa | 0

Risposto
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 ...

oltre 4 anni fa | 0

Risposto
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...

oltre 4 anni fa | 0

Risposto
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],...

oltre 4 anni fa | 1

| accettato

Risposto
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...

oltre 4 anni fa | 0

Risposto
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...

oltre 4 anni fa | 0

Risposto
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

oltre 4 anni fa | 1

| accettato

Risposto
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

oltre 4 anni fa | 0

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

oltre 4 anni fa | 0

Risposto
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(...

oltre 4 anni fa | 0

Risposto
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));

oltre 4 anni fa | 1

| accettato

Risposto
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,...

oltre 4 anni fa | 0

Risposto
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...

oltre 4 anni fa | 0

Risposto
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...

oltre 4 anni fa | 0

Risposto
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...

oltre 4 anni fa | 0

| accettato

Risposto
Geotif image appears darker
yes,sir,may be use imtool to adjust data

oltre 4 anni fa | 0

Risposto
Detect voids in FRC by Image Processing Toolbox
sir,may be upload image file to do some analysis

oltre 4 anni fa | 0

Risposto
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 ...

oltre 4 anni fa | 0

| accettato

Risposto
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

oltre 4 anni fa | 1

Risposto
how to calculate texture parameters
yes,sir,may be use graycomatrix、graycoprops to do texture analysis

oltre 4 anni fa | 0

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

oltre 4 anni fa | 0

Risposto
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....

oltre 4 anni fa | 0

Risposto
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...

oltre 4 anni fa | 0

Carica altro