1,Organized point clouds are most from depth images, while the unorganized are from Ladar scanning or others technology;
2,The organized point clouds are like 2D image, it has width and height, it is ordered and can be retrieved by the index of each point.Unorganized point clouds is listed in 1D array, its height is 1, its width is the number of points. It is orderless, you cannot find the specified point.For this reason, some tasks are time consuming using the unorganized point clouds.
3, from the pcl tutorial.
“Unorganized” point clouds are characterized by non-existing point references between points from different point clouds due to varying size, resolution, density and/or point ordering. In case of “organized” point clouds often based on a single 2D depth/disparity images with fixed width and height, a differential analysis of the corresponding 2D depth data might be faster.