Statistiques
RANG
204 701
of 300 851
RÉPUTATION
0
CONTRIBUTIONS
17 Questions
1 Réponse
ACCEPTATION DE VOS RÉPONSES
35.29%
VOTES REÇUS
0
RANG
of 21 094
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 171 294
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
How to determine the first 4 values of DFT of h(n)?
given the H(z)== (1 + z-1) / [(1 – z-1) (1 – 0.8ejπ/4 z-1)(1 – 0.8e-jπ/4 z-1)]
plus de 10 ans il y a | 1 réponse | 0
0
réponseQuestion
how to scan the image in specific region is all white?
true final= maxxImage(60:100, :); if all(final == 0) disp('rows were all pure white'); else disp('there was at ...
plus de 10 ans il y a | 1 réponse | 0
0
réponseQuestion
how to check the value 0 in row (200 till 240) ,whole column is true?
i have binary image (320 columns 240 rows). i want to check the value of row(200-240) is all white(0).
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
how to crop image.
i want to crop image from column(1-10) and column(310-320) without changing the row size. my image is 240 rows,320 columns.
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
how to overlay two plot of image to be one image only. But display both plot on that image.
this is my code. true %point location row=find(sum(maxxImage,2)==0,1,'last')+1; col=find(maxxImage(row,:)~=0); row=...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
how to show output of the distance between two point?I just find the highest location of white pixel.
I want to find the distance from the highest point location (highestWhiteRow,thatColumn) to the lastRow,thatColumn.After that,t...
plus de 10 ans il y a | 1 réponse | 0
0
réponseQuestion
How to mark the (last row,this column) of finding the highest white pixels through each column.
<</matlabcentral/answers/uploaded_files/30271/kkk.PNG>> the code for find the white pixels through each column,and mark into ...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
How to show the coordinate automatically after plot the marker?
this is the code true %point location row=find(sum(img8,2)==0,1,'last')+1; col=find(img8(row,:)~=0); row=row(ones(...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
I want to crop image for each side column(left and right).
I am trying use this code,but it crop each row(up and bottom). How to crop it trough each 10 column left and right? clc; ...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
Display the distance in meter real time obstacle avoidance.
<</matlabcentral/answers/uploaded_files/30032/5.png>> How can i get the distance from the starting point to the highest point...
plus de 10 ans il y a | 1 réponse | 0
0
réponseQuestion
i want to mark the highest point of any non-black pixel within the image to find the max point.
here is my image. I had ask before at https://www.mathworks.com/matlabcentral/answers/213198-i-want-to-mark-only-the-highest-mid...
plus de 10 ans il y a | 2 réponses | 0
2
réponsesQuestion
i want to mark only the highest middle point of binary image but it show the min point too.
<</matlabcentral/answers/uploaded_files/29625/ijj.PNG>> % code %highest point location [ y, x] = find(maxIm...
plus de 10 ans il y a | 3 réponses | 0
3
réponsesQuestion
How to join between each edge? I am used Sobel Edge Detection. It will result MATLAB fill code some error. Is there any method can be used?
<</matlabcentral/answers/uploaded_files/29323/error.png>> the edge do not connect to each other at binary image. how to co...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
How to continue find white pixels from last column to the next lastColumns-1 and so on?
% Go across columns of image looking for last white pixel in the column. [rows, columns] = size(BW); % Output image output =...
plus de 10 ans il y a | 2 réponses | 0
2
réponsesQuestion
I want to find white pixel, from fill the from bottom to top. Once the white pixels is found, I want to fill the next (same columns,row++) with all black. I have BW image using Sobel Edge Detection.
1. From the bottom left of the pixel(first column), I want to find the edge pixel (white pixel=0) [rows, columns]=size[BW];...
presque 11 ans il y a | 1 réponse | 0
1
réponseQuestion
I have a binary image of 100x150pixels. I want to do the loop function to read pixels of the binary image from bottom to top. Currently I'm doing side fill from bottom to top of image processiing. How can I write the variable of the row and column fr
i am referring to : http://www.roborealm.com/tutorial/Obstacle_Avoidance/slide010.php
presque 11 ans il y a | 1 réponse | 0
1
réponsehow to fill a binary image from bottom to top? i'm trying using imfill but the output is wrong. The second picture is want i want.
here is my input image https://NURULNAJMAH.opendrive.com/files?NTdfMTEwMTNfUExKRkc
presque 11 ans il y a | 0
| A accepté
Question
how to fill a binary image from bottom to top? i'm trying using imfill but the output is wrong. The second picture is want i want.
clear all;close all; %Load and Read Image object = imread('kotak.jpg'); %Resize the image by pixels obstacle= imresize(o...
presque 11 ans il y a | 1 réponse | 0
