photo

Regina N


Active since 2019

Followers: 0   Following: 0

Statistics

MATLAB Answers

9 Questions
0 Answers

RANK
80,864
of 297,503

REPUTATION
0

CONTRIBUTIONS
9 Questions
0 Answers

ANSWER ACCEPTANCE
55.56%

VOTES RECEIVED
0

RANK
 of 20,449

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 159,017

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 3

View badges

Feeds

View by

Question


How to train neural network with extracted features?
I use following code for feature detection aand storing: srcFiles = dir('E:\Database\Preprocessed\Genuine\Resize\20\*.png'); %...

6 years ago | 1 answer | 0

1

answer

Question


How to apply classifier on extracted features?
srcFiles = dir('C:\Users\LENOVO\Desktop\Genuine\2\*.png'); % the folder in which ur images exists Features = cell(length(srcFi...

6 years ago | 1 answer | 0

1

answer

Question


How to read and pre-process the multiple images and write in specific location?
function preprocessing_multiple srcFiles = dir('C:\Users\LENOVO\Desktop\Genuine\1\*.png'); % the folder in which ur images e...

6 years ago | 1 answer | 0

1

answer

Question


Is the following code is sufficient for feature detection, extraction of multiple images and storing them into single cell for classification?
srcFiles = dir('C:\Users\LENOVO\Desktop\Genuine\1\*.png'); % the folder in which ur images exists Features = cell(length(srcFi...

6 years ago | 1 answer | 0

1

answer

Question


I am using following code for detecting surf features, bt the error is occur, so plz help me to solve it.
%read image I = imread('C:\Users\LENOVO\Desktop\Genuine\2\2.2.png'); I2=rgb2gray(I); %Detect SURF features. points = detectS...

6 years ago | 1 answer | 0

1

answer

Question


I have using following code for SURF feature extraction and storing. but i get error every time...plz help to fix it.thank you.
srcFiles = dir('C:\Users\LENOVO\Desktop\Genuine\1\*.png'); % the folder in which ur images exists Features = cell(length(srcFi...

6 years ago | 1 answer | 0

1

answer

Question


Hello im doing my project in offline signature verification system, plz tell me how to store extracted SURF features?
function Feature_Extraction2 %Extract surf features: %Read image. I = imread('C:\Users\LENOVO\Desktop\MATLAB\Database2\P...

6 years ago | 0 answers | 0

0

answers

Question


I am working on signature verification system, i want to preprocess the scanned signature images, i have created following function, tell me it is useful or not?
function preprocessed I=imread('image'); imshow(I) I2=rgb2gray(I); figure,imshow(I2) I3=im2bw(I2); figure,imshow(I...

6 years ago | 0 answers | 0

0

answers

Question


How to create database of 320 images in matlab? for signature verification system how to extract surf features and how to store them?
MathWorks I = imread('C:\Users\LENOVO\Desktop\MATLAB\Database2\Preprocessed\forged\1\1.1.png'); %Find and extract features...

6 years ago | 1 answer | 0

1

answer