I am struggling with the image augmentation in Keras.
The concept, where I define an ImageDataGenerator to modify the data and a flow function to apply it to the data is (or seems) clear to me.
But why are the flow functions (flow
, flow_from_dataframe
, flow_from_directory
) different from each other? Their purpose is clear to me: they handle data with different types of sources.
I mean the difference in the parameters to pass. Especially, one difference comes to my mind: for the flow (where I augment data that is already loaded)
I don't have a possibility to state an interpolation mechanism. But don't I need one then?