Can anyone explain me the difference between Conditional Random Fields and Fully Connected Conditional Random Fields for semantic segmentation? I only understand so far, that with CRF you try to use two kinds of information to improve the segmentation mask:
- Pixel Intensity: A good guess for a edge between to classes is pixel intensity. So with this we can weight the edges of objects
- Pixel proximity: For pixel close together, there is a high chance that they blong to the same class. With out this, we would interpret edges inside a object at instances of another class, e.g. backround.
Are my assumptions right? Is this true for CRFs or Fully connected CRFs, or both?
Thanks!