-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1173 from prominenceai/v0.29.alpha
v0.29.alpha
- Loading branch information
Showing
109 changed files
with
4,538 additions
and
2,233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# v0.29.alpha Release Notes | ||
The main focus of this release was to complete the [Remuxer Component](/docs/api-remuxer.md) to support [Selective Parallel Inference](/docs/overview.md#selective-parallel-inference). | ||
|
||
**IMPORTANT!** There are breaking changes in this release so please review the notes carefully. | ||
|
||
## Issues closed in this release | ||
### Bugs closed in this release | ||
* Remove nvvideoconvert plugin from primary inference component [#1170](https://github.com/prominenceai/deepstream-services-library/issues/1170) | ||
|
||
### Enhancements closed in this release | ||
* Refactor Remuxer - no longer a Tee - add Metamuxer plugin and auto generate Metamuxer config [#1161](https://github.com/prominenceai/deepstream-services-library/issues/1161) | ||
* Create cpp example - how to work with opencv in custom pph using DslSurfaceTransform.h [#1169](https://github.com/prominenceai/deepstream-services-library/issues/1169) | ||
* Rename dsl_infer_primary_pph_add/remove to dsl_infer_pph_add/remove - support adding pphs to primary and secondary [#1171](https://github.com/prominenceai/deepstream-services-library/issues/1171) | ||
|
||
--- | ||
|
||
### Renamed Services in this release | ||
* All `dsl_tee_remuxer_*` services have replace with new `dsl_remuxer_*` services (see below). | ||
* The `dsl_infer_primary_pph_add/remove` services have been renamed to `dsl_infer_pph_add/remove` (see below). | ||
|
||
--- | ||
|
||
### New Services in this release | ||
**New Remuxer API:** | ||
* [`dsl_remuxer_new`](/docs/api-remuxer.md#dsl_remuxer_new) | ||
* [`dsl_remuxer_new_branch_add_many`](/docs/api-remuxer.md#dsl_remuxer_new_branch_add_many) | ||
* [`dsl_remuxer_branch_add`](/docs/api-remuxer.md#dsl_remuxer_branch_add) | ||
* [`dsl_remuxer_branch_add_to`](/docs/api-remuxer.md#dsl_remuxer_branch_add_to) | ||
* [`dsl_remuxer_branch_add_many`](/docs/api-remuxer.md#dsl_remuxer_branch_add_many) | ||
* [`dsl_remuxer_branch_remove`](/docs/api-remuxer.md#dsl_remuxer_branch_remove) | ||
* [`dsl_remuxer_branch_remove_many`](/docs/api-remuxer.md#dsl_remuxer_branch_remove_many) | ||
* [`dsl_remuxer_branch_remove_all`](/docs/api-remuxer.md#dsl_remuxer_branch_remove_all) | ||
* [`dsl_remuxer_pph_add`](/docs/api-remuxer.md#dsl_remuxer_pph_add) | ||
* [`dsl_remuxer_pph_remove`](/docs/api-remuxer.md#dsl_remuxer_pph_remove) | ||
* [`dsl_remuxer_batch_properties_get`](/docs/api-remuxer.md#dsl_remuxer_batch_properties_get) | ||
* [`dsl_remuxer_batch_properties_set`](/docs/api-remuxer.md#dsl_remuxer_batch_properties_set) | ||
* [`dsl_remuxer_dimensions_get`](/docs/api-remuxer.md#dsl_remuxer_dimensions_get) | ||
* [`dsl_remuxer_dimensions_set`](/docs/api-remuxer.md#dsl_remuxer_dimensions_set) | ||
* [`dsl_remuxer_branch_config_file_get`](/docs/api-remuxer.md#dsl_remuxer_branch_config_file_get) | ||
* [`dsl_remuxer_branch_config_file_set`](/docs/api-remuxer.md#dsl_remuxer_branch_config_file_set) | ||
* [`dsl_remuxer_batch_size_get`](/docs/api-remuxer.md#dsl_remuxer_batch_size_get) | ||
* [`dsl_remuxer_batch_size_set`](/docs/api-remuxer.md#dsl_remuxer_batch_size_set) | ||
|
||
**New Infer Services:** | ||
* [`dsl_infer_pph_add`](/docs/api-infer.md#dsl_infer_pph_add) (renamed) | ||
* [`dsl_infer_pph_remove`](/docs/api-infer.md#dsl_infer_pph_remove) (renamed) | ||
|
||
### New Examples in this release | ||
* [`parallel_inference_on_selective_streams.py`](/examples/python/parallel_inference_on_selective_streams.py) | ||
* [`parallel_inference_on_selective_streams.cpp`](/examples/cpp/parallel_inference_on_selective_streams.cpp) | ||
* [`4file_custom_pph_using_opencv.cpp`](/examples/cpp/4file_custom_pph_using_opencv.cpp) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.