Freehand selections

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
7 messages Options
Reply | Threaded
Open this post in threaded view
|

Freehand selections

Blandine Chanteloup
Hello,

Does anybody know the name of the macro or plugin or function called when
the mouse is pressed on the "Freehand selection" button in the ImageJ
toolbar ???

Please HELP    ....

Thanks

Blandine
Reply | Threaded
Open this post in threaded view
|

Re: Freehand selections

Sabine De Vreese
>Hello,
>
>Does anybody know the name of the macro or plugin or function called when
>the mouse is pressed on the "Freehand selection" button in the ImageJ
>toolbar ???
>
Still searching on that? I've given up. I'm not sure, but I don't think
anything happens when you press that button, what happens is described in
ImageCanvas. Though I've got to disappoint you on that, I've studied the
code, I've tried almost everything, but still nothing works.

_________________________________________________________________
Gratis bloggen op MSN Spaces  http://spaces.msn.com/?mkt=nl-be
Reply | Threaded
Open this post in threaded view
|

Re: Freehand selections

Volker Baecker
Hello,
the only thing that happens when one of those buttons is pressed is that
the selected tool changes.
It depends on the selected tool what happens when you click on an image
afterwards.
Volker

Sabine De Vreese wrote:

>> Hello,
>>
>> Does anybody know the name of the macro or plugin or function called
>> when the mouse is pressed on the "Freehand selection" button in the
>> ImageJ toolbar ???
>>
> Still searching on that? I've given up. I'm not sure, but I don't
> think anything happens when you press that button, what happens is
> described in ImageCanvas. Though I've got to disappoint you on that,
> I've studied the code, I've tried almost everything, but still nothing
> works.
>
> _________________________________________________________________
> Gratis bloggen op MSN Spaces  http://spaces.msn.com/?mkt=nl-be
>

--
passerelle antivirus du campus CNRS de Montpellier
--
Reply | Threaded
Open this post in threaded view
|

Re: Freehand selections

Blandine Chanteloup
In reply to this post by Blandine Chanteloup
Finally,

I've defined a FreehandRoiBis classe inherited from the FreehandRoi one
where the grow() method is public and not protected.
And here is my code:

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class JFrame_TestImageJROI extends javax.swing.JFrame
                 implements MouseListener, MouseMotionListener {
         private ij.IJ myImageJ;
         private ij.ImagePlus myImagePlus;
         private ij.process.ImageProcessor myImageProcessor;
         private ij.gui.ImageCanvas myImageCanvas;

         private FreehandRoiBis roi;

         int xOrigROI;
         int yOrigROI;

         public static void main(String[] args) {
                 JFrame_TestImageJROI inst = new JFrame_TestImageJROI();
                 inst.setVisible(true);
         }

         public JFrame_TestImageJROI() {
                 super();
                 initGUI();
         }

         private void initGUI() {
                 try {
                         setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
                         this.setFocusable(false);
                         pack();
                         setSize(400, 300);
                         myImageJ = new ij.IJ();
                         myImageJ.open("image.bmp");
                         myImagePlus = myImageJ.getImage();
                         myImageProcessor = myImagePlus.getProcessor();
                         myImageProcessor.setColor(Color.yellow);
                         myImageProcessor.setLineWidth(2);

                         myImageCanvas = new ij.gui.ImageCanvas(myImagePlus);
                         this.add(myImageCanvas);

                         myImageCanvas.addMouseListener(this);
                         myImageCanvas.addMouseMotionListener(this);

                 } catch (Exception e) {
                         e.printStackTrace();
                 }
         }
         public void mousePressed(MouseEvent evt) {
                 xOrigROI = evt.getX();
                 yOrigROI = evt.getY();
                 roi = new FreehandRoiBis(evt.getX(), evt.getY(), myImagePlus);
                 myImagePlus.setRoi(roi);
                 roi.drawPixels(myImageProcessor);
                 myImagePlus.setProcessor(null,myImageProcessor);
                 myImageCanvas.repaint();
         }
         public void mouseDragged(MouseEvent evt) {
                 roi.grow(evt.getX(), evt.getY());
                 roi.drawPixels(myImageProcessor);
                 myImagePlus.setProcessor(null,myImageProcessor);
                 myImageCanvas.repaint();
         }
         public void mouseReleased(MouseEvent evt) {
                 roi.grow(xOrigROI,yOrigROI);
                 roi.drawPixels(myImageProcessor);
                 myImagePlus.setProcessor(null,myImageProcessor);
                 myImageCanvas.repaint();
         }
         public void mouseClicked(MouseEvent evt) {}
         public void mouseExited(MouseEvent evt) {}
         public void mouseEntered(MouseEvent evt) {}
         public void mouseMoved(MouseEvent evt) {}
}

Thanks everybody and especially Volker


>Hello,
>
>Does anybody know the name of the macro or plugin or function called when
>the mouse is pressed on the "Freehand selection" button in the ImageJ
>toolbar ???
>
>Please HELP    ....
>
>Thanks
>
>Blandine
Reply | Threaded
Open this post in threaded view
|

Re: Freehand selections

Sabine De Vreese
Would you mind sharing the code of FreehandRoiBis? I'm still having
difficulties ...
(e.g. for roi.drawPixels(myImageProcessor);  I'm getting a compiler error
(drawPixels() in ij.gui.Roi cannot be applied to
(ij.process.ImageProcessor)). Thanks a lot!


>
>Finally,
>
>I've defined a FreehandRoiBis classe inherited from the FreehandRoi one
>where the grow() method is public and not protected.
>And here is my code:
>
>import java.awt.*;
>import java.awt.event.*;
>import javax.swing.*;
>
>public class JFrame_TestImageJROI extends javax.swing.JFrame
>                 implements MouseListener, MouseMotionListener {
>         private ij.IJ myImageJ;
>         private ij.ImagePlus myImagePlus;
>         private ij.process.ImageProcessor myImageProcessor;
>         private ij.gui.ImageCanvas myImageCanvas;
>
>         private FreehandRoiBis roi;
>
>         int xOrigROI;
>         int yOrigROI;
>
>         public static void main(String[] args) {
>                 JFrame_TestImageJROI inst = new JFrame_TestImageJROI();
>                 inst.setVisible(true);
>         }
>
>         public JFrame_TestImageJROI() {
>                 super();
>                 initGUI();
>         }
>
>         private void initGUI() {
>                 try {
>                        
>setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
>                         this.setFocusable(false);
>                         pack();
>                         setSize(400, 300);
>                         myImageJ = new ij.IJ();
>                         myImageJ.open("image.bmp");
>                         myImagePlus = myImageJ.getImage();
>                         myImageProcessor = myImagePlus.getProcessor();
>                         myImageProcessor.setColor(Color.yellow);
>                         myImageProcessor.setLineWidth(2);
>
>                         myImageCanvas = new
>ij.gui.ImageCanvas(myImagePlus);
>                         this.add(myImageCanvas);
>
>                         myImageCanvas.addMouseListener(this);
>                         myImageCanvas.addMouseMotionListener(this);
>
>                 } catch (Exception e) {
>                         e.printStackTrace();
>                 }
>         }
>         public void mousePressed(MouseEvent evt) {
>                 xOrigROI = evt.getX();
>                 yOrigROI = evt.getY();
>                 roi = new FreehandRoiBis(evt.getX(), evt.getY(),
>myImagePlus);
>                 myImagePlus.setRoi(roi);
>                 roi.drawPixels(myImageProcessor);
>                 myImagePlus.setProcessor(null,myImageProcessor);
>                 myImageCanvas.repaint();
>         }
>         public void mouseDragged(MouseEvent evt) {
>                 roi.grow(evt.getX(), evt.getY());
>                 roi.drawPixels(myImageProcessor);
>                 myImagePlus.setProcessor(null,myImageProcessor);
>                 myImageCanvas.repaint();
>         }
>         public void mouseReleased(MouseEvent evt) {
>                 roi.grow(xOrigROI,yOrigROI);
>                 roi.drawPixels(myImageProcessor);
>                 myImagePlus.setProcessor(null,myImageProcessor);
>                 myImageCanvas.repaint();
>         }
>         public void mouseClicked(MouseEvent evt) {}
>         public void mouseExited(MouseEvent evt) {}
>         public void mouseEntered(MouseEvent evt) {}
>         public void mouseMoved(MouseEvent evt) {}
>}
>
>Thanks everybody and especially Volker
>
>
>>Hello,
>>
>>Does anybody know the name of the macro or plugin or function called when
>>the mouse is pressed on the "Freehand selection" button in the ImageJ
>>toolbar ???
>>
>>Please HELP    ....
>>
>>Thanks
>>
>>Blandine

_________________________________________________________________
Bescherm je Inbox: Phishing - hoe te herkennen, rapporteren en voorkomen    
http://www.msn.be/security/phishing/
Reply | Threaded
Open this post in threaded view
|

Re: Freehand selections

Blandine Chanteloup
Here is the code of FreehandRoiBis :

import ij.*;
import ij.gui.*;

public class FreehandRoiBis extends FreehandRoi {

     public FreehandRoiBis(int x, int y, ImagePlus imp) {
         super(x, y, imp);
     }

     public void grow(int ox, int oy) {
         super.grow(ox, oy);
     }

}

Hope that will help you &;)


>Would you mind sharing the code of FreehandRoiBis? I'm still having
>difficulties ...
>(e.g. for roi.drawPixels(myImageProcessor);  I'm getting a compiler error
>(drawPixels() in ij.gui.Roi cannot be applied to
>(ij.process.ImageProcessor)). Thanks a lot!
>
>
>>
>>Finally,
>>
>>I've defined a FreehandRoiBis classe inherited from the FreehandRoi one
>>where the grow() method is public and not protected.
>>And here is my code:
>>
>>import java.awt.*;
>>import java.awt.event.*;
>>import javax.swing.*;
>>
>>public class JFrame_TestImageJROI extends javax.swing.JFrame
>>                 implements MouseListener, MouseMotionListener {
>>         private ij.IJ myImageJ;
>>         private ij.ImagePlus myImagePlus;
>>         private ij.process.ImageProcessor myImageProcessor;
>>         private ij.gui.ImageCanvas myImageCanvas;
>>
>>         private FreehandRoiBis roi;
>>
>>         int xOrigROI;
>>         int yOrigROI;
>>
>>         public static void main(String[] args) {
>>                 JFrame_TestImageJROI inst = new JFrame_TestImageJROI();
>>                 inst.setVisible(true);
>>         }
>>
>>         public JFrame_TestImageJROI() {
>>                 super();
>>                 initGUI();
>>         }
>>
>>         private void initGUI() {
>>                 try {
>>
>>setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
>>                         this.setFocusable(false);
>>                         pack();
>>                         setSize(400, 300);
>>                         myImageJ = new ij.IJ();
>>                         myImageJ.open("image.bmp");
>>                         myImagePlus = myImageJ.getImage();
>>                         myImageProcessor = myImagePlus.getProcessor();
>>                         myImageProcessor.setColor(Color.yellow);
>>                         myImageProcessor.setLineWidth(2);
>>
>>                         myImageCanvas = new ij.gui.ImageCanvas(myImagePlus);
>>                         this.add(myImageCanvas);
>>
>>                         myImageCanvas.addMouseListener(this);
>>                         myImageCanvas.addMouseMotionListener(this);
>>
>>                 } catch (Exception e) {
>>                         e.printStackTrace();
>>                 }
>>         }
>>         public void mousePressed(MouseEvent evt) {
>>                 xOrigROI = evt.getX();
>>                 yOrigROI = evt.getY();
>>                 roi = new FreehandRoiBis(evt.getX(), evt.getY(),
>> myImagePlus);
>>                 myImagePlus.setRoi(roi);
>>                 roi.drawPixels(myImageProcessor);
>>                 myImagePlus.setProcessor(null,myImageProcessor);
>>                 myImageCanvas.repaint();
>>         }
>>         public void mouseDragged(MouseEvent evt) {
>>                 roi.grow(evt.getX(), evt.getY());
>>                 roi.drawPixels(myImageProcessor);
>>                 myImagePlus.setProcessor(null,myImageProcessor);
>>                 myImageCanvas.repaint();
>>         }
>>         public void mouseReleased(MouseEvent evt) {
>>                 roi.grow(xOrigROI,yOrigROI);
>>                 roi.drawPixels(myImageProcessor);
>>                 myImagePlus.setProcessor(null,myImageProcessor);
>>                 myImageCanvas.repaint();
>>         }
>>         public void mouseClicked(MouseEvent evt) {}
>>         public void mouseExited(MouseEvent evt) {}
>>         public void mouseEntered(MouseEvent evt) {}
>>         public void mouseMoved(MouseEvent evt) {}
>>}
>>
>>Thanks everybody and especially Volker
>>
>>
>>>Hello,
>>>
>>>Does anybody know the name of the macro or plugin or function called
>>>when the mouse is pressed on the "Freehand selection" button in the
>>>ImageJ toolbar ???
>>>
>>>Please HELP    ....
>>>
>>>Thanks
>>>
>>>Blandine
Reply | Threaded
Open this post in threaded view
|

Re: Freehand selections

Aimee2158
In reply to this post by Blandine Chanteloup

Real Life Cam - Real Private Life on WebCam
"Covid" 2017 - 2032 Girls and  Boys, Russian Family Incest, Private Video Collection
Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection
Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls
New Free Games, Private Sex Orgy, Self Teen Girls;  ajb Archive
Private Video Collection, Very Explicit Cams
18-19 yo Teens Only, Asian Tiktok Teens
Home Made Model, 29571 Videos and 5964953 Photos

Download from (( https://xubster.com/free546.html ))
Link: https://xubster.com/users/546/9802/

Download from (( https://daofile.com/free14348.html ))
Link: https://daofile.com/go/3w4soyhvuake

Download from (( https://file.al/premium56284.html ))
Link: https://file.al/public/56284/31885/

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

Log In or Sign Up; Link: https://daofile.com/free14348.html

VIP: - Young Nude Vagina
Link; 1: https://daofile.com/go/58017o3w2wa1

VIP: - Taboo Teen Archive
Link; 2: https://daofile.com/go/at6nq7tzdrwq
Link; 3: https://daofile.com/go/uqvdfvlt1b7j

VIP: - Private Sex Orgy; - Self Teen Girls
Link; 4: https://daofile.com/go/rwmcfthjrcew
Link; 5: https://daofile.com/go/7x4q0mtks6bo

Japanese Bath Culture; Public Bath
Link; 6: https://daofile.com/go/zvcjqfm0s50w
Link; 7: https://daofile.com/go/62mt4oaxq78n

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Log In or Sign Up; Link: https://xubster.com/free546.html

Amateur Young Girls
Link; 001: https://xubster.com/users/546/12421/
Link; 002: https://xubster.com/users/546/12462/

Covid; 2017 - 2032 Girls and Boys
Exclusive Video Collection
Link; 003: https://xubster.com/users/546/12422/
Link; 004: https://xubster.com/users/546/12473/

18-19 yo Teens Only
Link; 005: https://xubster.com/users/546/12423/
Link; 006: https://xubster.com/users/546/12474/

Real Life Cam - Real Private Life on WebCam
Link; 007: https://xubster.com/users/546/12418/
Link; 008: https://xubster.com/users/546/12490/

*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*
*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*

Real Life Cam - Real Private Life on WebCam
"Covid" 2017 - 2032 Girls and  Boys, Russian Family Incest, Private Video Collection
Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection
Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls
New Free Games, Private Sex Orgy, Self Teen Girls;  ajb Archive
Private Video Collection, Very Explicit Cams
18-19 yo Teens Only, Asian Tiktok Teens
Home Made Model, 29571 Videos and 5964953 Photos

Download from (( https://daofile.com/free14348.html ))
Link: https://daofile.com/go/3w4soyhvuake

Download from (( https://xubster.com/free546.html ))
Link: https://xubster.com/users/546/9802/

Download from (( https://file.al/premium56284.html ))
Link: https://file.al/public/56284/31885/

____________________
____________________

__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**





Real Life Cam - Real Private Life on WebCam
"Covid" 2017 - 2032 Girls and  Boys, Russian Family Incest, Private Video Collection
Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection
Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls
New Free Games, Private Sex Orgy, Self Teen Girls;  ajb Archive
Private Video Collection, Very Explicit Cams
18-19 yo Teens Only, Asian Tiktok Teens
Home Made Model, 29571 Videos and 5964953 Photos

Download from (( https://xubster.com/free546.html ))
Link: https://xubster.com/users/546/9802/

Download from (( https://daofile.com/free14348.html ))
Link: https://daofile.com/go/3w4soyhvuake

Download from (( https://file.al/premium56284.html ))
Link: https://file.al/public/56284/31885/

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

Log In or Sign Up; Link: https://daofile.com/free14348.html

VIP: - Young Nude Vagina
Link; 1: https://daofile.com/go/58017o3w2wa1

VIP: - Taboo Teen Archive
Link; 2: https://daofile.com/go/at6nq7tzdrwq
Link; 3: https://daofile.com/go/uqvdfvlt1b7j

VIP: - Private Sex Orgy; - Self Teen Girls
Link; 4: https://daofile.com/go/rwmcfthjrcew
Link; 5: https://daofile.com/go/7x4q0mtks6bo

Japanese Bath Culture; Public Bath
Link; 6: https://daofile.com/go/zvcjqfm0s50w
Link; 7: https://daofile.com/go/62mt4oaxq78n

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Log In or Sign Up; Link: https://xubster.com/free546.html

Amateur Young Girls
Link; 001: https://xubster.com/users/546/12421/
Link; 002: https://xubster.com/users/546/12462/

Covid; 2017 - 2032 Girls and Boys
Exclusive Video Collection
Link; 003: https://xubster.com/users/546/12422/
Link; 004: https://xubster.com/users/546/12473/

18-19 yo Teens Only
Link; 005: https://xubster.com/users/546/12423/
Link; 006: https://xubster.com/users/546/12474/

Real Life Cam - Real Private Life on WebCam
Link; 007: https://xubster.com/users/546/12418/
Link; 008: https://xubster.com/users/546/12490/

*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*
*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*

Real Life Cam - Real Private Life on WebCam
"Covid" 2017 - 2032 Girls and  Boys, Russian Family Incest, Private Video Collection
Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection
Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls
New Free Games, Private Sex Orgy, Self Teen Girls;  ajb Archive
Private Video Collection, Very Explicit Cams
18-19 yo Teens Only, Asian Tiktok Teens
Home Made Model, 29571 Videos and 5964953 Photos

Download from (( https://daofile.com/free14348.html ))
Link: https://daofile.com/go/3w4soyhvuake

Download from (( https://xubster.com/free546.html ))
Link: https://xubster.com/users/546/9802/

Download from (( https://file.al/premium56284.html ))
Link: https://file.al/public/56284/31885/

____________________
____________________

__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**






Real Life Cam - Real Private Life on WebCam
"Covid" 2017 - 2032 Girls and  Boys, Russian Family Incest, Private Video Collection
Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection
Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls
New Free Games, Private Sex Orgy, Self Teen Girls;  ajb Archive
Private Video Collection, Very Explicit Cams
18-19 yo Teens Only, Asian Tiktok Teens
Home Made Model, 29571 Videos and 5964953 Photos

Download from (( https://xubster.com/free546.html ))
Link: https://xubster.com/users/546/9802/

Download from (( https://daofile.com/free14348.html ))
Link: https://daofile.com/go/3w4soyhvuake

Download from (( https://file.al/premium56284.html ))
Link: https://file.al/public/56284/31885/

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

Log In or Sign Up; Link: https://daofile.com/free14348.html

VIP: - Young Nude Vagina
Link; 1: https://daofile.com/go/58017o3w2wa1

VIP: - Taboo Teen Archive
Link; 2: https://daofile.com/go/at6nq7tzdrwq
Link; 3: https://daofile.com/go/uqvdfvlt1b7j

VIP: - Private Sex Orgy; - Self Teen Girls
Link; 4: https://daofile.com/go/rwmcfthjrcew
Link; 5: https://daofile.com/go/7x4q0mtks6bo

Japanese Bath Culture; Public Bath
Link; 6: https://daofile.com/go/zvcjqfm0s50w
Link; 7: https://daofile.com/go/62mt4oaxq78n

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Log In or Sign Up; Link: https://xubster.com/free546.html

Amateur Young Girls
Link; 001: https://xubster.com/users/546/12421/
Link; 002: https://xubster.com/users/546/12462/

Covid; 2017 - 2032 Girls and Boys
Exclusive Video Collection
Link; 003: https://xubster.com/users/546/12422/
Link; 004: https://xubster.com/users/546/12473/

18-19 yo Teens Only
Link; 005: https://xubster.com/users/546/12423/
Link; 006: https://xubster.com/users/546/12474/

Real Life Cam - Real Private Life on WebCam
Link; 007: https://xubster.com/users/546/12418/
Link; 008: https://xubster.com/users/546/12490/

*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*
*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*

Real Life Cam - Real Private Life on WebCam
"Covid" 2017 - 2032 Girls and  Boys, Russian Family Incest, Private Video Collection
Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection
Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls
New Free Games, Private Sex Orgy, Self Teen Girls;  ajb Archive
Private Video Collection, Very Explicit Cams
18-19 yo Teens Only, Asian Tiktok Teens
Home Made Model, 29571 Videos and 5964953 Photos

Download from (( https://daofile.com/free14348.html ))
Link: https://daofile.com/go/3w4soyhvuake

Download from (( https://xubster.com/free546.html ))
Link: https://xubster.com/users/546/9802/

Download from (( https://file.al/premium56284.html ))
Link: https://file.al/public/56284/31885/

____________________
____________________

__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**






Real Life Cam - Real Private Life on WebCam
"Covid" 2017 - 2032 Girls and  Boys, Russian Family Incest, Private Video Collection
Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection
Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls
New Free Games, Private Sex Orgy, Self Teen Girls;  ajb Archive
Private Video Collection, Very Explicit Cams
18-19 yo Teens Only, Asian Tiktok Teens
Home Made Model, 29571 Videos and 5964953 Photos

Download from (( https://xubster.com/free546.html ))
Link: https://xubster.com/users/546/9802/

Download from (( https://daofile.com/free14348.html ))
Link: https://daofile.com/go/3w4soyhvuake

Download from (( https://file.al/premium56284.html ))
Link: https://file.al/public/56284/31885/

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

Log In or Sign Up; Link: https://daofile.com/free14348.html

VIP: - Young Nude Vagina
Link; 1: https://daofile.com/go/58017o3w2wa1

VIP: - Taboo Teen Archive
Link; 2: https://daofile.com/go/at6nq7tzdrwq
Link; 3: https://daofile.com/go/uqvdfvlt1b7j

VIP: - Private Sex Orgy; - Self Teen Girls
Link; 4: https://daofile.com/go/rwmcfthjrcew
Link; 5: https://daofile.com/go/7x4q0mtks6bo

Japanese Bath Culture; Public Bath
Link; 6: https://daofile.com/go/zvcjqfm0s50w
Link; 7: https://daofile.com/go/62mt4oaxq78n

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Log In or Sign Up; Link: https://xubster.com/free546.html

Amateur Young Girls
Link; 001: https://xubster.com/users/546/12421/
Link; 002: https://xubster.com/users/546/12462/

Covid; 2017 - 2032 Girls and Boys
Exclusive Video Collection
Link; 003: https://xubster.com/users/546/12422/
Link; 004: https://xubster.com/users/546/12473/

18-19 yo Teens Only
Link; 005: https://xubster.com/users/546/12423/
Link; 006: https://xubster.com/users/546/12474/

Real Life Cam - Real Private Life on WebCam
Link; 007: https://xubster.com/users/546/12418/
Link; 008: https://xubster.com/users/546/12490/

*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*
*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*

Real Life Cam - Real Private Life on WebCam
"Covid" 2017 - 2032 Girls and  Boys, Russian Family Incest, Private Video Collection
Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection
Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls
New Free Games, Private Sex Orgy, Self Teen Girls;  ajb Archive
Private Video Collection, Very Explicit Cams
18-19 yo Teens Only, Asian Tiktok Teens
Home Made Model, 29571 Videos and 5964953 Photos

Download from (( https://daofile.com/free14348.html ))
Link: https://daofile.com/go/3w4soyhvuake

Download from (( https://xubster.com/free546.html ))
Link: https://xubster.com/users/546/9802/

Download from (( https://file.al/premium56284.html ))
Link: https://file.al/public/56284/31885/

____________________
____________________

__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**






Real Life Cam - Real Private Life on WebCam
"Covid" 2017 - 2032 Girls and  Boys, Russian Family Incest, Private Video Collection
Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection
Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls
New Free Games, Private Sex Orgy, Self Teen Girls;  ajb Archive
Private Video Collection, Very Explicit Cams
18-19 yo Teens Only, Asian Tiktok Teens
Home Made Model, 29571 Videos and 5964953 Photos

Download from (( https://xubster.com/free546.html ))
Link: https://xubster.com/users/546/9802/

Download from (( https://daofile.com/free14348.html ))
Link: https://daofile.com/go/3w4soyhvuake

Download from (( https://file.al/premium56284.html ))
Link: https://file.al/public/56284/31885/

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

Log In or Sign Up; Link: https://daofile.com/free14348.html

VIP: - Young Nude Vagina
Link; 1: https://daofile.com/go/58017o3w2wa1

VIP: - Taboo Teen Archive
Link; 2: https://daofile.com/go/at6nq7tzdrwq
Link; 3: https://daofile.com/go/uqvdfvlt1b7j

VIP: - Private Sex Orgy; - Self Teen Girls
Link; 4: https://daofile.com/go/rwmcfthjrcew
Link; 5: https://daofile.com/go/7x4q0mtks6bo

Japanese Bath Culture; Public Bath
Link; 6: https://daofile.com/go/zvcjqfm0s50w
Link; 7: https://daofile.com/go/62mt4oaxq78n

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Log In or Sign Up; Link: https://xubster.com/free546.html

Amateur Young Girls
Link; 001: https://xubster.com/users/546/12421/
Link; 002: https://xubster.com/users/546/12462/

Covid; 2017 - 2032 Girls and Boys
Exclusive Video Collection
Link; 003: https://xubster.com/users/546/12422/
Link; 004: https://xubster.com/users/546/12473/

18-19 yo Teens Only
Link; 005: https://xubster.com/users/546/12423/
Link; 006: https://xubster.com/users/546/12474/

Real Life Cam - Real Private Life on WebCam
Link; 007: https://xubster.com/users/546/12418/
Link; 008: https://xubster.com/users/546/12490/

*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*
*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*

Real Life Cam - Real Private Life on WebCam
"Covid" 2017 - 2032 Girls and  Boys, Russian Family Incest, Private Video Collection
Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection
Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls
New Free Games, Private Sex Orgy, Self Teen Girls;  ajb Archive
Private Video Collection, Very Explicit Cams
18-19 yo Teens Only, Asian Tiktok Teens
Home Made Model, 29571 Videos and 5964953 Photos

Download from (( https://daofile.com/free14348.html ))
Link: https://daofile.com/go/3w4soyhvuake

Download from (( https://xubster.com/free546.html ))
Link: https://xubster.com/users/546/9802/

Download from (( https://file.al/premium56284.html ))
Link: https://file.al/public/56284/31885/

____________________
____________________

__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**






Real Life Cam - Real Private Life on WebCam
"Covid" 2017 - 2032 Girls and  Boys, Russian Family Incest, Private Video Collection
Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection
Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls
New Free Games, Private Sex Orgy, Self Teen Girls;  ajb Archive
Private Video Collection, Very Explicit Cams
18-19 yo Teens Only, Asian Tiktok Teens
Home Made Model, 29571 Videos and 5964953 Photos

Download from (( https://xubster.com/free546.html ))
Link: https://xubster.com/users/546/9802/

Download from (( https://daofile.com/free14348.html ))
Link: https://daofile.com/go/3w4soyhvuake

Download from (( https://file.al/premium56284.html ))
Link: https://file.al/public/56284/31885/

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

Log In or Sign Up; Link: https://daofile.com/free14348.html

VIP: - Young Nude Vagina
Link; 1: https://daofile.com/go/58017o3w2wa1

VIP: - Taboo Teen Archive
Link; 2: https://daofile.com/go/at6nq7tzdrwq
Link; 3: https://daofile.com/go/uqvdfvlt1b7j

VIP: - Private Sex Orgy; - Self Teen Girls
Link; 4: https://daofile.com/go/rwmcfthjrcew
Link; 5: https://daofile.com/go/7x4q0mtks6bo

Japanese Bath Culture; Public Bath
Link; 6: https://daofile.com/go/zvcjqfm0s50w
Link; 7: https://daofile.com/go/62mt4oaxq78n

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Log In or Sign Up; Link: https://xubster.com/free546.html

Amateur Young Girls
Link; 001: https://xubster.com/users/546/12421/
Link; 002: https://xubster.com/users/546/12462/

Covid; 2017 - 2032 Girls and Boys
Exclusive Video Collection
Link; 003: https://xubster.com/users/546/12422/
Link; 004: https://xubster.com/users/546/12473/

18-19 yo Teens Only
Link; 005: https://xubster.com/users/546/12423/
Link; 006: https://xubster.com/users/546/12474/

Real Life Cam - Real Private Life on WebCam
Link; 007: https://xubster.com/users/546/12418/
Link; 008: https://xubster.com/users/546/12490/

*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*
*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*

Real Life Cam - Real Private Life on WebCam
"Covid" 2017 - 2032 Girls and  Boys, Russian Family Incest, Private Video Collection
Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection
Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls
New Free Games, Private Sex Orgy, Self Teen Girls;  ajb Archive
Private Video Collection, Very Explicit Cams
18-19 yo Teens Only, Asian Tiktok Teens
Home Made Model, 29571 Videos and 5964953 Photos

Download from (( https://daofile.com/free14348.html ))
Link: https://daofile.com/go/3w4soyhvuake

Download from (( https://xubster.com/free546.html ))
Link: https://xubster.com/users/546/9802/

Download from (( https://file.al/premium56284.html ))
Link: https://file.al/public/56284/31885/

____________________
____________________

__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**
__
**






Real Life Cam - Real Private Life on WebCam
"Covid" 2017 - 2032 Girls and  Boys, Russian Family Incest, Private Video Collection
Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection
Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls
New Free Games, Private Sex Orgy, Self Teen Girls;  ajb Archive
Private Video Collection, Very Explicit Cams
18-19 yo Teens Only, Asian Tiktok Teens
Home Made Model, 29571 Videos and 5964953 Photos

Download from (( https://xubster.com/free546.html ))
Link: https://xubster.com/users/546/9802/

Download from (( https://daofile.com/free14348.html ))
Link: https://daofile.com/go/3w4soyhvuake

Download from (( https://file.al/premium56284.html ))
Link: https://file.al/public/56284/31885/

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

Log In or Sign Up; Link: https://daofile.com/free14348.html

VIP: - Young Nude Vagina
Link; 1: https://daofile.com/go/58017o3w2wa1

VIP: - Taboo Teen Archive
Link; 2: https://daofile.com/go/at6nq7tzdrwq
Link; 3: https://daofile.com/go/uqvdfvlt1b7j

VIP: - Private Sex Orgy; - Self Teen Girls
Link; 4: https://daofile.com/go/rwmcfthjrcew
Link; 5: https://daofile.com/go/7x4q0mtks6bo

Japanese Bath Culture; Public Bath
Link; 6: https://daofile.com/go/zvcjqfm0s50w
Link; 7: https://daofile.com/go/62mt4oaxq78n

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Log In or Sign Up; Link: https://xubster.com/free546.html

Amateur Young Girls
Link; 001: https://xubster.com/users/546/12421/
Link; 002: https://xubster.com/users/546/12462/

Covid; 2017 - 2032 Girls and Boys
Exclusive Video Collection
Link; 003: https://xubster.com/users/546/12422/
Link; 004: https://xubster.com/users/546/12473/

18-19 yo Teens Only
Link; 005: https://xubster.com/users/546/12423/
Link; 006: https://xubster.com/users/546/12474/

Real Life Cam - Real Private Life on WebCam
Link; 007: https://xubster.com/users/546/12418/
Link; 008: https://xubster.com/users/546/12490/

*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*
*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*

Real Life Cam - Real Private Life on WebCam
"Covid" 2017 - 2032 Girls and  Boys, Russian Family Incest, Private Video Collection
Young Girls and Boys Make Real Hot Sex on Cam; Private Video Collection
Ajb, Random Tiktok Girls, Skype and Omegle Girls, Tiktok Nude Girls
New Free Games, Private Sex Orgy, Self Teen Girls;  ajb Archive
Private Video Collection, Very Explicit Cams
18-19 yo Teens Only, Asian Tiktok Teens
Home Made Model, 29571 Videos and 5964953 Photos

Download from (( https://daofile.com/free14348.html ))
Link: https://daofile.com/go/3w4soyhvuake

Download from (( https://xubster.com/free546.html ))
Link: https://xubster.com/users/546/9802/

Download from (( https://file.al/premium56284.html ))
Link: https://file.al/public/56284/31885/

_______________________
_______________________

Young Nude Vagina Private Video Collection