xdssio

Results 6 comments of xdssio

I think the printing of the image in different sizes in an overkill, have the image always look as in the first "image" column is fine, but the resize is...

We might want a helper function to find all files in a dir. Something like this orso ``` def get_paths(path, suffix=None, resize=None): if os.path.isfile(path): files = [path] if os.path.isdir(path): files...

To continue the discussion. I propose an "Image" column. ``` df = vaex.open_images("dir/with/images/*.png", column_name='image) # orso df = vaex.from_array(image=[np.fromstring(image_data)]) # this is for loading an image in server df['image'].path df['image'].shape...

I have > Is this the same idea as #1135? > > I think we got stuck there on the API name, and whether the current `rename` should be refactored...

I think that `np.array(df.to_arrays(arrays_type='numpy')).T` is a lot of non-standard code to teach and explain while `to_numpy` is simple and self-explanatory and works within the Vaex system (and also apply to...