Mixing custom and predefined features in FeatureStack of Advanced Weka Segmentation plugin

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

Mixing custom and predefined features in FeatureStack of Advanced Weka Segmentation plugin

Dionysios Lefkaditis
Hello,

I am trying to build a custom feature vector using features provided by AWS and my own in order to classify/segment images using AWS in beanshell. My script is a blend of the two scripts presented in the "Scripting the Trainable Segmentation" page. The script runs ok, but I have problem on how to pass all the slices of custom ImageStack in to a new FeatureStack. As it is at the moment, it only gets the first slice. When I .show() the FeatureStack and I .getSize(), it only returns 1 slice. My script is pasted bellow, but for the sake of being short I have omitted all the classification part. I would greatly appreciate any input.

Thanks in advance

So here it is:

import ij.*;
import ij.process.*;
import trainableSegmentation.*;
import hr.irb.fastRandomForest.*;
 
// training input image (it could be a stack or a single 2D image)
image = IJ.openImage("/home/dionysis/fermi/media/data/CNH/cnh_multispectral/Denmark_field_1/original images/15/RGB.bmp");
IJ.run(image, "32-bit", "");
H = image.getHeight();
W = image.getWidth();

// corresponding binary labels
labels = IJ.openImage("/home/dionysis/fermi/media/data/CNH/cnh_multispectral/Denmark_field_1/original images/15/MOG.bmp");

//*** Custom features***
cam = NewImage.createByteImage("camera_number", W, H, 1, NewImage.FILL_WHITE);
IJ.run(cam, "32-bit", "");

// the FeatureStackArray contains a FeatureStack for every slice in our original image
featuresArray = new FeatureStackArray(image.getStackSize(), 1, 16, false, 1, 19, null);

features = new FeatureStack(image);
features.addGaussianBlur(20);
features.addLaplacian(5);

customstack = new ImageStack(features.getWidth(), features.getHeight());
customstack.addSlice("originalstd", features.getProcessor(1));
customstack.addSlice("gaussianstd", features.getProcessor(2));
customstack.addSlice("Laplacianstd", features.getProcessor(3));
customstack.addSlice("original", image.getProcessor().duplicate());
customstack.addSlice("camera", cam.getProcessor().duplicate());

customFeaturesImage2 = new ImagePlus("features_std&cust", customstack);
customFeaturesImage2.show();

stack2featstack = new FeatureStack(customFeaturesImage2);
stack2featstack.show();
print(stack2featstack.getSize());

featuresArray.set(stack2featstack, 0);
featuresArray.setEnabledFeatures(stack2featstack.getEnabledFeatures());

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: Mixing custom and predefined features in FeatureStack of Advanced Weka Segmentation plugin

Ignacio Arganda-Carreras
Hello Dionysios,

You almost got it. The problem is you have to create the new FeatureStack
with the input image as parameter and the assign your custom ImageStack to
it. I only changed that and removed the last "setEnabledFeatures" call
because you can't use that method when creating your own features (it works
only with the regular ones).

The script should be like this:

import ij.*;
import ij.process.*;
import trainableSegmentation.*;
import hr.irb.fastRandomForest.*;

// training input image (it could be a stack or a single 2D image)
image =
IJ.openImage("/home/dionysis/fermi/media/data/CNH/cnh_multispectral/Denmark_field_1/original
images/15/RGB.bmp");
IJ.run(image, "32-bit", "");
H = image.getHeight();
W = image.getWidth();

// corresponding binary labels
labels =
IJ.openImage("/home/dionysis/fermi/media/data/CNH/cnh_multispectral/Denmark_field_1/original
images/15/MOG.bmp");

//*** Custom features***
cam = NewImage.createByteImage("camera_number", W, H, 1,
NewImage.FILL_WHITE);
IJ.run(cam, "32-bit", "");

features = new FeatureStack(image);
features.addGaussianBlur(20);
features.addLaplacian(5);

customstack = new ImageStack(features.getWidth(), features.getHeight());
customstack.addSlice("originalstd", features.getProcessor(1));
customstack.addSlice("gaussianstd", features.getProcessor(2));
customstack.addSlice("Laplacianstd", features.getProcessor(3));
customstack.addSlice("original", image.getProcessor().duplicate());
customstack.addSlice("camera", cam.getProcessor().duplicate());

customFeaturesImage2 = new ImagePlus("features_std&cust", customstack);
customFeaturesImage2.show();

// create new feature stack with the custom features
stack2featstack = new FeatureStack( image );
stack2featstack.setStack( customstack );

// the FeatureStackArray contains a FeatureStack for every slice in our
original image
featuresArray = new FeatureStackArray(image.getStackSize(), 1, 16, false,
1, 19, null);

// assign feature stack to array
featuresArray.set(stack2featstack, 0);

I hope it helps!

ignacio

On Thu, Mar 21, 2013 at 11:10 AM, Dionysios Lefkaditis <[hidden email]
> wrote:

> Hello,
>
> I am trying to build a custom feature vector using features provided by
> AWS and my own in order to classify/segment images using AWS in beanshell.
> My script is a blend of the two scripts presented in the "Scripting the
> Trainable Segmentation" page. The script runs ok, but I have problem on how
> to pass all the slices of custom ImageStack in to a new FeatureStack. As it
> is at the moment, it only gets the first slice. When I .show() the
> FeatureStack and I .getSize(), it only returns 1 slice. My script is pasted
> bellow, but for the sake of being short I have omitted all the
> classification part. I would greatly appreciate any input.
>
> Thanks in advance
>
> So here it is:
>
> import ij.*;
> import ij.process.*;
> import trainableSegmentation.*;
> import hr.irb.fastRandomForest.*;
>
> // training input image (it could be a stack or a single 2D image)
> image =
> IJ.openImage("/home/dionysis/fermi/media/data/CNH/cnh_multispectral/Denmark_field_1/original
> images/15/RGB.bmp");
> IJ.run(image, "32-bit", "");
> H = image.getHeight();
> W = image.getWidth();
>
> // corresponding binary labels
> labels =
> IJ.openImage("/home/dionysis/fermi/media/data/CNH/cnh_multispectral/Denmark_field_1/original
> images/15/MOG.bmp");
>
> //*** Custom features***
> cam = NewImage.createByteImage("camera_number", W, H, 1,
> NewImage.FILL_WHITE);
> IJ.run(cam, "32-bit", "");
>
> // the FeatureStackArray contains a FeatureStack for every slice in our
> original image
> featuresArray = new FeatureStackArray(image.getStackSize(), 1, 16, false,
> 1, 19, null);
>
> features = new FeatureStack(image);
> features.addGaussianBlur(20);
> features.addLaplacian(5);
>
> customstack = new ImageStack(features.getWidth(), features.getHeight());
> customstack.addSlice("originalstd", features.getProcessor(1));
> customstack.addSlice("gaussianstd", features.getProcessor(2));
> customstack.addSlice("Laplacianstd", features.getProcessor(3));
> customstack.addSlice("original", image.getProcessor().duplicate());
> customstack.addSlice("camera", cam.getProcessor().duplicate());
>
> customFeaturesImage2 = new ImagePlus("features_std&cust", customstack);
> customFeaturesImage2.show();
>
> stack2featstack = new FeatureStack(customFeaturesImage2);
> stack2featstack.show();
> print(stack2featstack.getSize());
>
> featuresArray.set(stack2featstack, 0);
> featuresArray.setEnabledFeatures(stack2featstack.getEnabledFeatures());
>
> --
> ImageJ mailing list: http://imagej.nih.gov/ij/list.html
>



--
Ignacio Arganda-Carreras, Ph.D.
Seung's lab, 46-5065
Department of Brain and Cognitive Sciences
Massachusetts Institute of Technology
43 Vassar St.
Cambridge, MA 02139
USA

Phone: (001) 617-324-3747
Website: http://bioweb.cnb.csic.es/~iarganda/index_EN.html

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: Mixing custom and predefined features in FeatureStack of Advanced Weka Segmentation plugin

Aimee2158
In reply to this post by Dionysios Lefkaditis

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