What does generate_anchor_base()'s arguments mean?












1















Github page



Looking generate_anchor_base method, which is Faster R-CNN util method in ChainerCV.



What is the base_size = 16? I saw in the Documentation that it is




The width and the height of the reference window.




But what does "reference window" mean?



Also it says that anchor_scales=[8, 16, 32] are the areas of the anchors but I thought that that the areas are (128, 256, 512)



Another question:

If the base size is 16 and h = 128 and w=128, Does that mean anchor_base[index, 0] = py - h / 2 is a negative value?
since py = 8 and and h/2 = 128/2










share|improve this question





























    1















    Github page



    Looking generate_anchor_base method, which is Faster R-CNN util method in ChainerCV.



    What is the base_size = 16? I saw in the Documentation that it is




    The width and the height of the reference window.




    But what does "reference window" mean?



    Also it says that anchor_scales=[8, 16, 32] are the areas of the anchors but I thought that that the areas are (128, 256, 512)



    Another question:

    If the base size is 16 and h = 128 and w=128, Does that mean anchor_base[index, 0] = py - h / 2 is a negative value?
    since py = 8 and and h/2 = 128/2










    share|improve this question



























      1












      1








      1








      Github page



      Looking generate_anchor_base method, which is Faster R-CNN util method in ChainerCV.



      What is the base_size = 16? I saw in the Documentation that it is




      The width and the height of the reference window.




      But what does "reference window" mean?



      Also it says that anchor_scales=[8, 16, 32] are the areas of the anchors but I thought that that the areas are (128, 256, 512)



      Another question:

      If the base size is 16 and h = 128 and w=128, Does that mean anchor_base[index, 0] = py - h / 2 is a negative value?
      since py = 8 and and h/2 = 128/2










      share|improve this question
















      Github page



      Looking generate_anchor_base method, which is Faster R-CNN util method in ChainerCV.



      What is the base_size = 16? I saw in the Documentation that it is




      The width and the height of the reference window.




      But what does "reference window" mean?



      Also it says that anchor_scales=[8, 16, 32] are the areas of the anchors but I thought that that the areas are (128, 256, 512)



      Another question:

      If the base size is 16 and h = 128 and w=128, Does that mean anchor_base[index, 0] = py - h / 2 is a negative value?
      since py = 8 and and h/2 = 128/2







      chainer chainercv






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 18 '18 at 14:06









      corochann

      1,1951618




      1,1951618










      asked Nov 18 '18 at 11:52









      floydfloyd

      206111




      206111
























          1 Answer
          1






          active

          oldest

          votes


















          1














          The method is a util function of Faster R-CNN, so I assume you understood what is the "anchor" proposed in Faster R-CNN.




          • "Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks" https://arxiv.org/abs/1506.01497


          base_size and anchor_scales determines the size of the anchor.
          For example, when base_size=16 and anchor_scales=[8, 16, 32] (and ratio=1.0), height and width of the anchor will be 16 * [8, 16, 32] = (128, 256, 512), as you expected.
          ratio determines the height and width aspect ratio.



          (I might be wrong in below paragraph, please correct if I'm wrong.)



          I think base_size need to be set as the size of the current hidden layer's scale. In the chainercv Faster R-CNN implementation, extractor's feature is fed into rpn (region proposal network) and generate_anchor_base is used in rpn. So you need to take care what is the feature of extractor's output. chainercv uses VGG16 as the feature extractor, and conv5_3 layer is used as extracted feature (see here), this layer is a place where max_pooling_2d is applied 4 times, which results 2^4=16 times smallen feature.



          For the another question, I think your understanding is correct, py - h / 2 will be negative value. But this anchor_base value is just a relative value. Once anchor_base is prepared at the initialization of model (here), actual (absolute value) anchor is created in each forward call (here) in _enumerate_shifted_anchor method.






          share|improve this answer
























          • Yes, thank you. 16 is the receptive field(in the original image) for every spatial location in "conv5_3". But I still can't get it, Why do we need to create variable "base_size"? We could just say anchor_scales=[128, 256, 512], right? What does the operation mean "base size * anchor_scales"? What does "reference window" mean? So sorry for all those questions :(

            – floyd
            Nov 18 '18 at 14:04











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          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: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          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%2fstackoverflow.com%2fquestions%2f53360552%2fwhat-does-generate-anchor-bases-arguments-mean%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          The method is a util function of Faster R-CNN, so I assume you understood what is the "anchor" proposed in Faster R-CNN.




          • "Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks" https://arxiv.org/abs/1506.01497


          base_size and anchor_scales determines the size of the anchor.
          For example, when base_size=16 and anchor_scales=[8, 16, 32] (and ratio=1.0), height and width of the anchor will be 16 * [8, 16, 32] = (128, 256, 512), as you expected.
          ratio determines the height and width aspect ratio.



          (I might be wrong in below paragraph, please correct if I'm wrong.)



          I think base_size need to be set as the size of the current hidden layer's scale. In the chainercv Faster R-CNN implementation, extractor's feature is fed into rpn (region proposal network) and generate_anchor_base is used in rpn. So you need to take care what is the feature of extractor's output. chainercv uses VGG16 as the feature extractor, and conv5_3 layer is used as extracted feature (see here), this layer is a place where max_pooling_2d is applied 4 times, which results 2^4=16 times smallen feature.



          For the another question, I think your understanding is correct, py - h / 2 will be negative value. But this anchor_base value is just a relative value. Once anchor_base is prepared at the initialization of model (here), actual (absolute value) anchor is created in each forward call (here) in _enumerate_shifted_anchor method.






          share|improve this answer
























          • Yes, thank you. 16 is the receptive field(in the original image) for every spatial location in "conv5_3". But I still can't get it, Why do we need to create variable "base_size"? We could just say anchor_scales=[128, 256, 512], right? What does the operation mean "base size * anchor_scales"? What does "reference window" mean? So sorry for all those questions :(

            – floyd
            Nov 18 '18 at 14:04
















          1














          The method is a util function of Faster R-CNN, so I assume you understood what is the "anchor" proposed in Faster R-CNN.




          • "Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks" https://arxiv.org/abs/1506.01497


          base_size and anchor_scales determines the size of the anchor.
          For example, when base_size=16 and anchor_scales=[8, 16, 32] (and ratio=1.0), height and width of the anchor will be 16 * [8, 16, 32] = (128, 256, 512), as you expected.
          ratio determines the height and width aspect ratio.



          (I might be wrong in below paragraph, please correct if I'm wrong.)



          I think base_size need to be set as the size of the current hidden layer's scale. In the chainercv Faster R-CNN implementation, extractor's feature is fed into rpn (region proposal network) and generate_anchor_base is used in rpn. So you need to take care what is the feature of extractor's output. chainercv uses VGG16 as the feature extractor, and conv5_3 layer is used as extracted feature (see here), this layer is a place where max_pooling_2d is applied 4 times, which results 2^4=16 times smallen feature.



          For the another question, I think your understanding is correct, py - h / 2 will be negative value. But this anchor_base value is just a relative value. Once anchor_base is prepared at the initialization of model (here), actual (absolute value) anchor is created in each forward call (here) in _enumerate_shifted_anchor method.






          share|improve this answer
























          • Yes, thank you. 16 is the receptive field(in the original image) for every spatial location in "conv5_3". But I still can't get it, Why do we need to create variable "base_size"? We could just say anchor_scales=[128, 256, 512], right? What does the operation mean "base size * anchor_scales"? What does "reference window" mean? So sorry for all those questions :(

            – floyd
            Nov 18 '18 at 14:04














          1












          1








          1







          The method is a util function of Faster R-CNN, so I assume you understood what is the "anchor" proposed in Faster R-CNN.




          • "Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks" https://arxiv.org/abs/1506.01497


          base_size and anchor_scales determines the size of the anchor.
          For example, when base_size=16 and anchor_scales=[8, 16, 32] (and ratio=1.0), height and width of the anchor will be 16 * [8, 16, 32] = (128, 256, 512), as you expected.
          ratio determines the height and width aspect ratio.



          (I might be wrong in below paragraph, please correct if I'm wrong.)



          I think base_size need to be set as the size of the current hidden layer's scale. In the chainercv Faster R-CNN implementation, extractor's feature is fed into rpn (region proposal network) and generate_anchor_base is used in rpn. So you need to take care what is the feature of extractor's output. chainercv uses VGG16 as the feature extractor, and conv5_3 layer is used as extracted feature (see here), this layer is a place where max_pooling_2d is applied 4 times, which results 2^4=16 times smallen feature.



          For the another question, I think your understanding is correct, py - h / 2 will be negative value. But this anchor_base value is just a relative value. Once anchor_base is prepared at the initialization of model (here), actual (absolute value) anchor is created in each forward call (here) in _enumerate_shifted_anchor method.






          share|improve this answer













          The method is a util function of Faster R-CNN, so I assume you understood what is the "anchor" proposed in Faster R-CNN.




          • "Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks" https://arxiv.org/abs/1506.01497


          base_size and anchor_scales determines the size of the anchor.
          For example, when base_size=16 and anchor_scales=[8, 16, 32] (and ratio=1.0), height and width of the anchor will be 16 * [8, 16, 32] = (128, 256, 512), as you expected.
          ratio determines the height and width aspect ratio.



          (I might be wrong in below paragraph, please correct if I'm wrong.)



          I think base_size need to be set as the size of the current hidden layer's scale. In the chainercv Faster R-CNN implementation, extractor's feature is fed into rpn (region proposal network) and generate_anchor_base is used in rpn. So you need to take care what is the feature of extractor's output. chainercv uses VGG16 as the feature extractor, and conv5_3 layer is used as extracted feature (see here), this layer is a place where max_pooling_2d is applied 4 times, which results 2^4=16 times smallen feature.



          For the another question, I think your understanding is correct, py - h / 2 will be negative value. But this anchor_base value is just a relative value. Once anchor_base is prepared at the initialization of model (here), actual (absolute value) anchor is created in each forward call (here) in _enumerate_shifted_anchor method.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 18 '18 at 13:39









          corochanncorochann

          1,1951618




          1,1951618













          • Yes, thank you. 16 is the receptive field(in the original image) for every spatial location in "conv5_3". But I still can't get it, Why do we need to create variable "base_size"? We could just say anchor_scales=[128, 256, 512], right? What does the operation mean "base size * anchor_scales"? What does "reference window" mean? So sorry for all those questions :(

            – floyd
            Nov 18 '18 at 14:04



















          • Yes, thank you. 16 is the receptive field(in the original image) for every spatial location in "conv5_3". But I still can't get it, Why do we need to create variable "base_size"? We could just say anchor_scales=[128, 256, 512], right? What does the operation mean "base size * anchor_scales"? What does "reference window" mean? So sorry for all those questions :(

            – floyd
            Nov 18 '18 at 14:04

















          Yes, thank you. 16 is the receptive field(in the original image) for every spatial location in "conv5_3". But I still can't get it, Why do we need to create variable "base_size"? We could just say anchor_scales=[128, 256, 512], right? What does the operation mean "base size * anchor_scales"? What does "reference window" mean? So sorry for all those questions :(

          – floyd
          Nov 18 '18 at 14:04





          Yes, thank you. 16 is the receptive field(in the original image) for every spatial location in "conv5_3". But I still can't get it, Why do we need to create variable "base_size"? We could just say anchor_scales=[128, 256, 512], right? What does the operation mean "base size * anchor_scales"? What does "reference window" mean? So sorry for all those questions :(

          – floyd
          Nov 18 '18 at 14:04


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • 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.


          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%2fstackoverflow.com%2fquestions%2f53360552%2fwhat-does-generate-anchor-bases-arguments-mean%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

          鏡平學校

          ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

          Why https connections are so slow when debugging (stepping over) in Java?