Brian Moore

Results 107 issues of Brian Moore

This PR adds support for *grouped datasets*, eg multiple camera view scenes. ### Example usage ```py import fiftyone as fo import fiftyone.utils.splits as fous import fiftyone.zoo as foz # #...

feature

Resolves https://github.com/voxel51/fiftyone/issues/1996. Adds a `url_name` and `description` to datasets: ```py import fiftyone as fo dataset = fo.Dataset("my dataset!") dataset.description = "Hello, world!" print(dataset.name) # my dataset! print(dataset._doc.url_name) # my-dataset dataset...

feature

This PR adds support for saving views on datasets under a `name` that can then be loaded at a later time. Saved views are stored in a new `views` collection...

feature

[Segmenation](https://voxel51.com/docs/fiftyone/user_guide/using_datasets.html#semantic-segmentation) and [Heatmap](https://voxel51.com/docs/fiftyone/user_guide/using_datasets.html#heatmaps) label types are currently stored as [binary blobs](https://github.com/voxel51/fiftyone/blob/4035cf729e01ab76d9cf84df616055a4fc971a34/fiftyone/core/fields.py#L507-L530) directly in the main `Sample` document in the database. An important problem with this approach is that `Segmentation` and...

feature
core

MongoDB has issues on Ubuntu 22.04: https://askubuntu.com/q/1403619 We need to document a recommend approach(es) for installing FiftyOne on Ubuntu 22.04, which may include: - Workarounds to install MongoDB manually -...

documentation
enhancement
installation

This was a request from a recent webinar. One option to supporting this would be to ingest the data from HDF5 format and write images/other media to an internal FiftyOne...

feature

Currently the default behavior of `COCODetectionDataset` is only to load detections, excluding masks and keypoints that might also be defined in the JSON. This is different than the default of...

enhancement

### Setup ```py import fiftyone as fo import fiftyone.zoo as foz dataset = foz.load_zoo_dataset("quickstart-geo") session = fo.launch_app(dataset) ``` ### Feature request I think we should add some indicator to the...

enhancement
good first issue
app

Enhancement requests for the (awesome) map plugin introduced in #1976: ### ESC handling Currently, pressing `ESC` when any component of the App is in focus (grid, sidebar, etc) will cause...

enhancement
good first issue
app