답변 있음
Can we interpolate some data using neural netwroks in matlab?
sir,may be upload some mat data use net to make the regress layer

4년 초과 전 | 0

| 수락됨

답변 있음
Looking for a suitable image and video processing method for seam tracking
sir,please check the follow code to get some information for more information,you can read the book 《计算机视觉与深度学习实战》,Thank you!...

4년 초과 전 | 0

| 수락됨

답변 있음
Hi, I have curve fitted an histogram using the gaussian function. Now I would like to know how to extract a series of cell diameters from the gaussian fit.
sir,please check the follow code to get some information for more information,you can read the book 《计算机视觉与深度学习实战》,Thank you! ...

4년 초과 전 | 0

| 수락됨

답변 있음
What camera to buy for Image Acquisition using Matlab and Simulink
may be use the notebook PC to get frames

4년 초과 전 | 0

답변 있음
Diameter of a droplet using image processing
sir,please check the follow code to get some information for more information,you can read the book 《计算机视觉与深度学习实战》,Thank you! ...

4년 초과 전 | 1

답변 있음
Saving tiledlayout with imagesc exactly as shown
clc; clear all; close all; % create data (dim1 and dim2 are in the range of 10^2 to 10^4) dim1 = 400; dim2 = 700; data1 = ...

4년 초과 전 | 0

답변 있음
Why this error?
sir,may be use im=imread('Normal-1.bmp'); if ndims(im) == 3 im = rgb2gray(im); end d = 11; [pdf1, pdf2, pdf3, pdf4] ...

4년 초과 전 | 0

답변 있음
How do I obtain the distance from the bounding boxes in YOLO v2/v3 in MATLAB?
sir, may be use the dice to compute Sørensen-Dice similarity coefficient for image segmentation clc; clear all; close all; RGB...

4년 초과 전 | 0

답변 있음
Is it possible to save results after every epoch? so that if there is some issue with power i can continue my training from the same point.
sir,may be use ref https://www.mathworks.com/help/releases/R2021a/deeplearning/ug/resume-training-from-a-checkpoint-network.html...

4년 초과 전 | 0

| 수락됨

답변 있음
How can I change color of a circle?
clc; clear all; close all; imageSizeX = 256; imageSizeY = 256; [Imagecolumns, Imagerows] = meshgrid(1:imageSizeX, 1:image...

4년 초과 전 | 0

답변 있음
How do i get the filename of a dicom file ? I want to open dicom file with study description -"CSP"
clc; clear all details = dicomCollection(fullfile(matlabroot,'toolbox/images/imdata')); disp(details); A=details("s3",14) A(...

4년 초과 전 | 0

| 수락됨

답변 있음
How can I change the background of an image with green screen background?
clc; clear all; close all im = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/781108/image.png'); jm =...

4년 초과 전 | 1

답변 있음
How to extract the I and Q values from eye-diagram function into separate Variable?
clc; clear all; close all a = load("frame128APSK100.mat"); a1 = eyediagram(a.frame, 8); a2=get(a1,'Children'); a3=get(a2(1),...

4년 초과 전 | 0

| 수락됨

답변 있음
How to remove unwanted portion from background?
sir,use some basic method may be not the best choice,so may be consider some DeepLearning method,such as unet clc; clear all; c...

4년 초과 전 | 0

답변 있음
area of water body in a grey color image
sir,may be upload some image sample to develop.

4년 초과 전 | 0

답변 있음
how to detect a diamond shape using image processing and GUI
sir,may be upload some image samples to make some develop.

4년 초과 전 | 0

답변 있음
How to remove unwanted portion from background?
sir,please check the follow code to get some information for more information,you can read the book 《计算机视觉与深度学习实战》,Thank you! ...

4년 초과 전 | 0

답변 있음
HOW CAN I CREATE ROI IN IMAGE WITHOUT CROPPED IT FOR FEATURES DETECTION
ch=strcat('C:\Users\nada\Desktop\nadamastere\bd\fatigue\p1\image_',num2str(v,'%d'),'.png'); I1=imread(ch); I1=imresize(I1,[row...

4년 초과 전 | 0

| 수락됨

답변 있음
HOW TO CALCULATED THE DICE SIMILARITY
similarity = dice(logical(I), logical(II));

4년 초과 전 | 0

| 수락됨

답변 있음
HOW TO CALCULATE THE DICE SIMILARITY OF THE IMAGES SUBPLOT.
%% first, read the image data and labelled images clc clear all dataSetDir = fullfile('C:\Users\Akmal\Desktop\I-131 256 28.02...

4년 초과 전 | 0

| 수락됨

답변 있음
Detect a hole or a pit in an image.
sir, here is an sample demo,for other image,may be use some DeepLearning method,such as yolo、frcnn clc; clear all; close all; ...

4년 초과 전 | 0

| 수락됨

답변 있음
How to combine all the segmented images in one figure
use BW = logical(BW1+BW2+BW3+BW4);

4년 초과 전 | 0

| 수락됨

답변 있음
How to find an object in an frame from a video
sir,may be use some DeepLearning method,such as yolo、faster rcnn and so on.

4년 초과 전 | 0

답변 있음
Please help me convert equation to matlab code
clc; clear all; A = [ones(2, 3) zeros(2,2) eye(3) ones(3,1) zeros(3,1)] B = [pi*ones(1,5) ones(1,5) zeros(1,5)...

4년 초과 전 | 0

답변 있음
Determine the axis range of the graph image
sir,please check the follow code to get some information for more information,you can read the book 《计算机视觉与深度学习实战》,Thank you! ...

4년 초과 전 | 1

| 수락됨

답변 있음
How to remove unwanted portion from background?
sir,may be upload some image samples to develop

4년 초과 전 | 0

답변 있음
How to store images in an array ?
sir,please check the follow code to get some information for more information,you can read the book 《计算机视觉与深度学习实战》,Thank you! ...

4년 초과 전 | 1

| 수락됨

답변 있음
Using X,Y,Z coordinates and grayscale values of pixels to reconstruct an image
sir,may be use .off、.obj and so on to generate 3D file,such as

4년 초과 전 | 0

더 보기