Solved


Add two numbers
Given a and b, return the sum a+b in c.

9 years ago

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

9 years ago

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

9 years ago

Solved


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

9 years ago

Submitted


Dimensionality Reduction using Generalized Discriminant Analysis (GDA)
Generalized Discriminant Analysis - a non-linear feature dimensionality reduction technique

10 years ago | 1 download |

3.9 / 5
Thumbnail

Submitted


Gabor Feature Extraction
This program generates a custom Gabor filter bank; and extracts the image features using them.

10 years ago | 3 downloads |

4.8 / 5
Thumbnail

Answered
what features are to be extracted from an image for brain tumor detection?
Statistical features usually work well. You can try Gray Level Co-occurrence Matrix (GLCM), Histogram of Oriented Gradient (HOG)...

11 years ago | 1

| accepted

Answered
How to map certain temperature range into 0-255 gray scale image (thermogram) ?? Please advice...
temperature = 28.4 + intensity*(36-28.4)/255

11 years ago | 1

| accepted