It seems that some image processing functions worked differently in version 9. You would have to tune the parameters manually to deal with these differences (e.g. binarize differently).
Some other software, e.g. Fiji, have a feature to remove tiny loops before pruning. I think Pruning
does not have this feature.
ConnectedGraphComponents
does not exist in 9, but you can use Subgraph[g, First@ConnectedComponents[g]]
instead of First@ConnectedGraphComponents[g]
.