Respondida
Need to read text from a metal plate. Text is embossed on the plate.
yes,sir,may be use other ocr model,such as https://cloud.tencent.com/act/event/ocrdemo

alrededor de 4 años hace | 0

Respondida
Editing Ground Truth Labels after cropping images
yes,sir,may be use image segment,such as 2160x2560 images into 600x600 windows. you can get split rects,and then crop it

alrededor de 4 años hace | 1

Respondida
Appending Voxel Intensity with the Voxel Co-ordinates and Plotting ?
yes,sir,if show 3d,just use load img_64_chest.mat volshow(img) then you can get 3d show but what voxel_coords use to?add poi...

alrededor de 4 años hace | 0

Respondida
How can I crop a set of non-binary images automatically depending on the size and position of each image?
yes,sir,may be use image segment method,such as locate image rectangle,and then make it as logical mask matrix,then apply it to ...

alrededor de 4 años hace | 0

Respondida
How would you train a CNN to accurately predict the output of say the swt2 or fft2 function on an image?
yes,sir,may be make the input as vector,and use convolution2dLayer to get one dimension data,then define cnn model,such as imag...

alrededor de 4 años hace | 1

| aceptada

Respondida
CNN-LSTM validation data underperforming compared to training data
yes,sir,may be add some dropoutLayer、batchNormalizationLayer to make model more generic if possible,may be upload your data to ...

alrededor de 4 años hace | 1

| aceptada

Respondida
Deep Network Designer Training Images are size 224x224x1 but input layer expects images of size 224x224x3 (GoogLeNet Network Trained on Color Images to Gray)
clc; close all; animal_image_dataset = imageDatastore('***filename' ); %img = readimage(animal_image_dataset,n); [traino, ...

alrededor de 4 años hace | 0

Respondida
Help with forming a temperature image using black and white scale?
yes,sir,may be use colormap to get image,such as a = randi([7 42], 64, 1); a = repmat(a, 1, 64); map = linspace(0, 255, 64); ...

alrededor de 4 años hace | 0

Respondida
Matching features of two images
yes,sir,if use corel data,then you can choose color、textur and so on feature to compute image similar, or use sift、surf and s...

alrededor de 4 años hace | 0

Respondida
Measuring percentage of black pixels
clc; clear all; rois = {'https://ww2.mathworks.cn/matlabcentral/answers/uploaded_files/884800/ROI%201.png',... 'https://w...

alrededor de 4 años hace | 0

Respondida
How to separate two closely located masks in an image?
clc; clear all; close all; im = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/885010/image.jpeg'); bw...

alrededor de 4 años hace | 0

Respondida
Why is there overlayed square and number on Raspberry Pi camera image taken using MATLAB? How to remove?
mypi=raspi('raspberrypi'); mycam = cameraboard(mypi) mycam.ROI = [0.50 0.50 0.33 0.33] img = snapshot(mycam); imagesc(img); ...

alrededor de 4 años hace | 0

Respondida
Use shape Factor to judge cell or bacteria
yes,sir,may be check segment process,for example,use watermark and so on clear; close all; % Pre-processing ---------------...

alrededor de 4 años hace | 0

Respondida
replace one bit plane with random image in DCT domain and get DCT inverse
may be use uint8 loss some image data,can use more bigger range format,such as img=imread('cameraman.tif'); b = dct2(img); im...

alrededor de 4 años hace | 0

| aceptada

Respondida
How do I count certain values within a column of a table?
clc; clear all; close all; img = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/873730/image.png'); im...

alrededor de 4 años hace | 0

Respondida
How to open .int image Using Matlab?
fid = fopen('point1.int','rb'); a = fread(fid, 'double'); fclose(fid); but it all zeros

alrededor de 4 años hace | 0

| aceptada

Respondida
I can't install Add ons...
yes,sir,may be try install for many time,or change your web type,such as use wireless

alrededor de 4 años hace | 0

Respondida
How to get the function 'convolution1dLayer' ?
yes,sir,may be use 2D to replace 1D,such as imageInputLayer([1024 1 1]) convolution2dLayer([100 1],3,'Stride',1)

alrededor de 4 años hace | 0

Respondida
How to save an image saved on a Raspberry PI in a variable in order to process the image?
yes,sir,i face similar problem before,then use http server on device and use matlab read image through http link form device

alrededor de 4 años hace | 0

Respondida
access multiple csv files from different folder
% three folder in the drive namely 'D/Buck/V=12v' , 'D/Buck/V=24v' and 'D/Buck/V=48v' % 4 differnt csv files namely 2.csv,4....

alrededor de 4 años hace | 1

| aceptada

Respondida
How to automatically obtain shape coordinates
clc; clear all; close all; img = imread('https://ww2.mathworks.cn/matlabcentral/answers/uploaded_files/871715/uno.png'); if nd...

alrededor de 4 años hace | 0

Respondida
How to save figures on the program general folder?
yes,sir,may be use exportfig or print comand,such as fd = fullfile('C:\Users\ your\Examples\Balance_energetico_',aux_year); if...

alrededor de 4 años hace | 1

Respondida
how can i know the programming behind a MATLAB GUI
yes,sir,if you get .fig and .m file,just use guide to open .fig,and ues mouse right click button or other , view callback functi...

alrededor de 4 años hace | 0

Respondida
exportgraphics streches images whily saving if 'visible' is 'off' - bug?
clear all; close all; data = rand(10,5); %% on f1 = figure('Visible','on'); h1=heatmap(data); exportgraphics(f1,'test_on.p...

alrededor de 4 años hace | 0

Respondida
alignment issue in fprint
P=[65.44; 87.12; 67.46; 79.51]; words1={'Moisture';'Fixed carbon';'Volatile matter';'Ash'}; words2 = repmat({'wt%'},length(P),...

alrededor de 4 años hace | 1

| aceptada

Respondida
How to replace the one-hot-encoded label with a (Gaussian) distribution in the training of a CNN for classification ?
yes,sir,may be just compute vector,such as class_info = [1; 2; 2; 1] class_num = length(unique(class_info)); Y = zeros(length...

alrededor de 4 años hace | 0

Respondida
Hi, may i know how to create a loop in this code for image subtraction? X is the reference image and variable in Y , I have 10 images in the folder
% X is the reference image and variable in Y , I have 10 images in the folder x=im2double(imread('reference.png')); for i = 1...

alrededor de 4 años hace | 0

Respondida
How to reconstruct 3D volume from 2D projections that are generated by same 3D volumetric?
yes,sir,what is target,make 3d matrix display as 3d object?such as

alrededor de 4 años hace | 0

Respondida
Predictors must be a N-by-1 cell array of sequences, where N is the number of sequences. All sequences must have the have the same feature dimension and at least one time step
yes,sir,may be the data should make process,such as clc; clear all; close all; % Data = readtable("C:\Users\robouser\Desktop\m...

alrededor de 4 años hace | 0

| aceptada

Respondida
I have 2D .jpg images which I want to convert into 3D.stl files with same thickness throughout (eg two Z values) in the created .stl file
yes,sir,may be use f is Faces,v is Vertices tr2 = triangulation(f,v); stlwrite(tr2,'demo.stl');

alrededor de 4 años hace | 0

Cargar más