Answered How to crop an image inside a boundary ?
region=uint8(roipoly(img,position(:,1),position(:,2)));
After getting the mask of the selected region from the above line in yo...
Answered semantic segmentation of 4D MRI using 3D-UNet
Hi,
Since you defined the Input Layer size as [64 64 64 4], it is expecting the input you provide to be of size [64 64 64]. Wh...
Answered trainYOLOv2ObjectDetector function details.
You can refer to the following link on how to use the trainYOLOv2ObjectDetector function:
https://www.mathworks.com/help/vision...
Answered neural network regression model error
As I understand, your input dataset, “x” has size 1000 x 1 and the output, “y” has size 1000 x 1 and you are defining a regressi...
6 years ago | 2
Answered How to convert a binary image into lines only
Hi,
You can use the command “bwskel” for this purpose. It takes two parameters as input, the binary image and minimum branch l...