diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index e030700..a3efc6b 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,5 +1,5 @@ --- -name: Feature request +name: Feature request ✋ about: Suggest an idea for this project title: '' labels: enhancement @@ -10,11 +10,23 @@ assignees: '' **What exactly are your trying to do? Please describe.** Sometimes, it's just a matter of documentation where the right method already exists. Don't hesitate to describe your goal with high level details so that we can better discuss and imagine a generalized solution. +Example +> I want to be able to resize my images and their bounding box annotations accordingly + **Describe the solution you'd like** A clear and concise description of what you want to happen. -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. +- Especially, if you can, explain how you would like the code to be with an example. +- If you already have an idea of how to implement the solution, don't hesitate to share pointers here + + +Example +> The ideal solution would look like this +> ```python +> my_dataset = my_dataset.resize(size=(220,220)) +> my_dataset.to_caipy(output_folder) +> ``` + **Additional context** Add any other context or screenshots about the feature request here.