Other Parts Discussed in Thread: IWR6843
I would like help on 2 subjects with respect to using the IWR6843ISK:
1) I would like to start with the out-of-box demo and just use it to collect point cloud data (x,y,z data is sufficient but if velocity is also available that is a plus). Then I would like to do my own processing on the data. The best viewer for the out-of-box example is the web visualizer, but the tutorial says that the Industrial Viewer can also work. I have not tried that viewer for this demo, but I have used it for other demos with the IWR6843.
a) Is the best way to start with the Industrial Viewer, and modify that (Python) code? Other tutorials suggest this possibility and I have installed the necessary software dependencies to do this. However, the Python source code consists of multiple Python files in multiple folders, so I am wondering if there is a project file that I can use with Visual Code or visual Studio or some other IDE to help me navigate through all the files to understand how to make the changes I wish to make? I have tried to do this manually, one file at a time, but it would be much better to work on this as a complete project rather than file-by-file.
2) Considering #1 above, are there guidelines/suggestions for how to to optimize the point cloud considering the following:
a) Range of objects to detect is about 5 meters or less initially
b) I want to detect the walls and stationary features in the environment and not filter them out. There will be few if any moving obstacles although the radar sensor itself will be moving, so in that sense everything will be moving with respect to the radar.
c) Most things to detect should have a large radar cross section that is larger than a human although I would like to also detect that size if possible.
d) I would like to get several points for each detected item, and in fact I would prefer to not group the points into "items" at all until I do the processing myself on the point cloud data. Ideally I would get tens or hundreds of points per detected item (ie, as for a wall).
So far I have had some success by limiting the max range for which points get filtered out, and by unchecking the box to group range points together in the visualizer GUI. However, at best I get maybe 15-20 points for a small object that presents an 8 sq ft profile to the radar at about 3 feet distance and I would like to see more points if possible. So this is where I could use some guidance.
Thanks for your help.