Bounding box regression in R-CNN Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Moderator Election Q&A - Questionnaire 2019 Community Moderator Election ResultsHow does the bounding box regressor work in Fast R-CNN?Space between an object and the ground truth bounding boxPreparing ground truth labels for YOLO3Faster R-CNN wrapper for the number of RPNs in the layer dimensions?What is difference between intersection over union (IoU) and intersection over bounding box (IoBB)?Get bounding boxes for adjacent instances of a single class in imageTraining detector without bounding box dataHow does CNN doing bounding box regression and what do features and weights represent for?How does fully connected layer predict bounding box in CNN intuitively?How to project a bounding box on feature map?

Is CEO the "profession" with the most psychopaths?

How does the math work when buying airline miles?

Is there a kind of relay only consumes power when switching?

Redirect to div in page with #

Sum letters are not two different

Why is it faster to reheat something than it is to cook it?

Would "destroying" Wurmcoil Engine prevent its tokens from being created?

Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?

Disembodied hand growing fangs

Is there any word for a place full of confusion?

How do I make this wiring inside cabinet safer?

AppleTVs create a chatty alternate WiFi network

QGIS: how to apply Line Pattern Fill to LineStrings?

Why wasn't DOSKEY integrated with COMMAND.COM?

Project Euler #1 in C++

As a beginner, should I get a Squier Strat with a SSS config or a HSS?

If windows 7 doesn't support WSL, then what does Linux subsystem option mean?

Circuit to "zoom in" on mV fluctuations of a DC signal?

Is it ethical to give a final exam after the professor has quit before teaching the remaining chapters of the course?

Did MS DOS itself ever use blinking text?

How often does castling occur in grandmaster games?

What do you call the main part of a joke?

How to convince students of the implication truth values?

Run Powershell Script From Agent As Administrator



Bounding box regression in R-CNN



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
2019 Moderator Election Q&A - Questionnaire
2019 Community Moderator Election ResultsHow does the bounding box regressor work in Fast R-CNN?Space between an object and the ground truth bounding boxPreparing ground truth labels for YOLO3Faster R-CNN wrapper for the number of RPNs in the layer dimensions?What is difference between intersection over union (IoU) and intersection over bounding box (IoBB)?Get bounding boxes for adjacent instances of a single class in imageTraining detector without bounding box dataHow does CNN doing bounding box regression and what do features and weights represent for?How does fully connected layer predict bounding box in CNN intuitively?How to project a bounding box on feature map?










0












$begingroup$


In R-CNN paper, they give the definition of the target values for bounding box regression



Given that $(P, G)$ is a (prediction box, ground-truth box) pair of the form $(x, y, w, h)$ where $x, y$ is the center coordinate of the box, $w, h$ are width and height respectively.




$t_x = (G_x - P_x) / P_w hspace2.0cm t_y = (G_y - P_y) / P_h$



$t_w = log(G_w / P_w) hspace2.0cm t_h = log(G_h / P_h)$




And the goal is to find $textbfw_*$, where $*$ can be $x, y, w$ or $h$, so that




$textbfw_* = arg min_hattextbfw_* sum_i (t^i_* - hattextbfw_*^T phi(P^i))^2 + lambda |hattextbfw_*|^2$ where $phi(P^i)$ is the feature map given by the last pooling layer of the feature extractor after passing predicted bounding box $P^i$




I don't understand why they come up with this approach of bounding box regression ? Can anyone tell me about this ?



P.S: since this regression approach is used not only in R-CNN but also in later models, I really want to get a clear understanding of this










share|improve this question









$endgroup$
















    0












    $begingroup$


    In R-CNN paper, they give the definition of the target values for bounding box regression



    Given that $(P, G)$ is a (prediction box, ground-truth box) pair of the form $(x, y, w, h)$ where $x, y$ is the center coordinate of the box, $w, h$ are width and height respectively.




    $t_x = (G_x - P_x) / P_w hspace2.0cm t_y = (G_y - P_y) / P_h$



    $t_w = log(G_w / P_w) hspace2.0cm t_h = log(G_h / P_h)$




    And the goal is to find $textbfw_*$, where $*$ can be $x, y, w$ or $h$, so that




    $textbfw_* = arg min_hattextbfw_* sum_i (t^i_* - hattextbfw_*^T phi(P^i))^2 + lambda |hattextbfw_*|^2$ where $phi(P^i)$ is the feature map given by the last pooling layer of the feature extractor after passing predicted bounding box $P^i$




    I don't understand why they come up with this approach of bounding box regression ? Can anyone tell me about this ?



    P.S: since this regression approach is used not only in R-CNN but also in later models, I really want to get a clear understanding of this










    share|improve this question









    $endgroup$














      0












      0








      0





      $begingroup$


      In R-CNN paper, they give the definition of the target values for bounding box regression



      Given that $(P, G)$ is a (prediction box, ground-truth box) pair of the form $(x, y, w, h)$ where $x, y$ is the center coordinate of the box, $w, h$ are width and height respectively.




      $t_x = (G_x - P_x) / P_w hspace2.0cm t_y = (G_y - P_y) / P_h$



      $t_w = log(G_w / P_w) hspace2.0cm t_h = log(G_h / P_h)$




      And the goal is to find $textbfw_*$, where $*$ can be $x, y, w$ or $h$, so that




      $textbfw_* = arg min_hattextbfw_* sum_i (t^i_* - hattextbfw_*^T phi(P^i))^2 + lambda |hattextbfw_*|^2$ where $phi(P^i)$ is the feature map given by the last pooling layer of the feature extractor after passing predicted bounding box $P^i$




      I don't understand why they come up with this approach of bounding box regression ? Can anyone tell me about this ?



      P.S: since this regression approach is used not only in R-CNN but also in later models, I really want to get a clear understanding of this










      share|improve this question









      $endgroup$




      In R-CNN paper, they give the definition of the target values for bounding box regression



      Given that $(P, G)$ is a (prediction box, ground-truth box) pair of the form $(x, y, w, h)$ where $x, y$ is the center coordinate of the box, $w, h$ are width and height respectively.




      $t_x = (G_x - P_x) / P_w hspace2.0cm t_y = (G_y - P_y) / P_h$



      $t_w = log(G_w / P_w) hspace2.0cm t_h = log(G_h / P_h)$




      And the goal is to find $textbfw_*$, where $*$ can be $x, y, w$ or $h$, so that




      $textbfw_* = arg min_hattextbfw_* sum_i (t^i_* - hattextbfw_*^T phi(P^i))^2 + lambda |hattextbfw_*|^2$ where $phi(P^i)$ is the feature map given by the last pooling layer of the feature extractor after passing predicted bounding box $P^i$




      I don't understand why they come up with this approach of bounding box regression ? Can anyone tell me about this ?



      P.S: since this regression approach is used not only in R-CNN but also in later models, I really want to get a clear understanding of this







      cnn object-detection faster-rcnn






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Apr 3 at 1:15









      HOANG GIANGHOANG GIANG

      426




      426




















          0






          active

          oldest

          votes












          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "557"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f48477%2fbounding-box-regression-in-r-cnn%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Data Science Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          Use MathJax to format equations. MathJax reference.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f48477%2fbounding-box-regression-in-r-cnn%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Adding axes to figuresAdding axes labels to LaTeX figuresLaTeX equivalent of ConTeXt buffersRotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?TikZ scaling graphic and adjust node position and keep font sizeNumerical conditional within tikz keys?adding axes to shapesAlign axes across subfiguresAdding figures with a certain orderLine up nested tikz enviroments or how to get rid of themAdding axes labels to LaTeX figures

          Luettelo Yhdysvaltain laivaston lentotukialuksista Lähteet | Navigointivalikko

          Gary (muusikko) Sisällysluettelo Historia | Rockin' High | Lähteet | Aiheesta muualla | NavigointivalikkoInfobox OKTuomas "Gary" Keskinen Ancaran kitaristiksiProjekti Rockin' High