Tumgik
#singleposes
simmireen · 1 month
Text
Tumblr media
I needed a few of these for my own story, but made this whole posepack live on instagram so it became a whole pack, so sharing as always because who knows you can use it too! ♥
'text message' 12 standing and sitting single poses with a phone ♥ DOWNLOAD (SFS) DOWNLOAD (Patreon) (always free!) You need the phone used here (ring category)
♥~♥ The poses work with Teleport any Sim and Andrew’s Pose Player The posepack is as usual provided with previews. These poses are somewhat gender-neutral, but there can be minor clipping or floating because every sim-body is different. I really would like to see if you use my poses! So tag me at tumblr, instagram or twitter (@simmireen) You can find an overview of all my posepacks at Pinterest You can support me on my Ko-Fi page > but never feel obliged to tip! Terms of use Don’t claim as yours or put behind a paywall Don’t re-edit (adjusting hands is always allowed, just don’t change up my pose) Don’t reupload anywhere Oh, and please let me know if something doesn’t work! @ts4-poses @sssvitlanz @alwaysfreecc
146 notes · View notes
evieduraine · 9 months
Text
Tumblr media
[evieduraine] Horse Lover Poses
This pack contains 4 poses for your sim and their horse. 🐎
You need:
✖ Pose Player and Teleport Any Sim
TOU:
✖ Please don't claim as your own, don't re-upload or re-edit.
______________________________________________________________  
Tag me if you use them, I want to see your creations. 🖤
✖ Instagram  
______________________________________________________________  
DOWNLOAD (patreon, free)
176 notes · View notes
simmingcawala · 9 months
Text
BEACH BABE POSES
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
I made a pose pack meant for the beach, but can be used anywhere!!!
More description on my Patreon (Free)
CliCk HerE
80 notes · View notes
posesandccbyws4s · 1 year
Photo
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
“I’ll sit as I like” pose pack - The Sims 4
Hi :) long time no see! I was resting, working hard and traveling but I finally create something new what I would like to share with you :) This pose pack is about model poses who use chair to pose. My inspiration was Instagram ofc and many of instagram's creative models <3 Hope you like it and use it :)
Enjoy! <3
Pose pack includes 12 single poses.
Please tag me on Instagram or Tumblr if you use these poses! I'd love to see it in your stories! @posesandccbyws4s <3
You will need:
Pose Mod & Teleporter X
Chair by Syboulette X
Free download on my Patreon @ts4-poses @ts4cc-finds @kittiesccfinds @simbfinds @lady-moriel
27 notes · View notes
ludovicasim · 2 years
Photo
Tumblr media
Fancy Runway
It’s my second Render hope you like it! And thanks to all cc creators! ✨
Pose by @sims4lifestorie
Deco Sims and Paparazzi by @reigningsims 
Hair by @aharris00britney  @aharris00finds
Dress and Shoes by @sentate
@emilyccfinds @maxismatchccworld
117 notes · View notes
artsyccfindss3 · 6 months
Text
Pregnancy
2 notes · View notes
thebrennts · 2 years
Photo
Tumblr media
[TheBrennts] Aren 
4 poses
Do not modify, do not reupload
Do not claim as your own pls.
Thank you for all CC creators
Hope you like it
DOWNLOAD ( Early Access at Patreon )
THANK YOU FOR YOUR SUPPORTING ME
AND Thank you so much too @sssvitlanz @emilyccfinds @ts4-poses
18 notes · View notes
theogoff · 1 year
Text
youtube
priv link to the output result of the ML code and a draft of some sort of more finalised video project.
For this project I was interested in using the PoseNet model to create a dynamic process of analysing and merging videos with images that would serve as a creative tool for dancers and performers. Similarly, this idea would lend itself to engaging video works where the process could be used alongside any videos where ml5.js is able to pick up body positions.
THE PROCESS
part one - analyseStills
The process took on several computational and non-computational steps that all end up working together in the final process. I first had to develop a piece of code that could take a jpeg and load ml5’s PoseNet to detect positions on still images:
function modelReady(){
  // when the model is ready, run the singlePose() function
  // if/when  pose is detected, poseNet.on('pose', ...) will be listening for the detection results
  // in the draw() loop, if there is any poses, then carry out the draw commands
  poseNet.singlePose(loadedImage, gotPoses);
}
Once the program could detect and store the coordinates of a single pose into the inputs array I was able to iterate through several stills at once for their coordinate data to be pushed into the array that would eventually be referenced in the second piece of code and compared against.
As I wanted my input data to be many different stills from a very similar video to the one I would be comparing them against, I needed to pull lots of jpegs from an mp4 file – at this point I was still using some found footage online of a man dancing with a static camera setup and his full body in shot. To do this I used the command line software ffmpeg to pull a folder of stills from the test video I had been using. This was the command written into the terminal[ii]:
specifying the:
time in/time out
 the video file I wanted to use
The quality (2 being the highest)
The number of frames to pull each second (this is an area of experimentation as there are advantages and disadvantages to pulling a large number of stills)
The file path and filenames of the outputted stills (%4d specifying the 4 leading zeros to organise the jpegs – 0000)
I then created a set of functions that alternated between taking the keypoints from an image, pushing them into an array, and loading in and preparing then next still, linking it up with PoseNet. It was difficult working out how to reference and name the stills correctly but by using a technique by Seaux[iii] I was able to take the correct still at the right time and give it a name that in the second program would be used to compare its keypoint coordinates.
function getImage(currentImage) {
  currentImageString = `scene1outfit1_${('0000'+currentImage).slice(-4)}`;
  // (adjusted to pad number with leading zeros)
  return createImg(`assets/scene1outfit1_output3/scene1outfit1_${('0000'+currentImage).slice(-4)}.jpg`);
}
part two: concept and filming
Now I had the framework for the first half of the program in place, I needed to then capture the footage that would be used for the final piece. This involved working with movement artist and dancer Isabella Pinto, filming some static shots that drew influence from the DIY style dance videos[v] that are common on YouTube and TikTok.
The footage was then processed in the first program, and I had a JSON file for each video that could be used in the second program to the data comparison. There were some adjustments needed for naming the arrays in the objects and the resolutions of the images to be optimal for the second stage.
part three: compareToVideo
The second program needed to play one of the videos and run the PoseNet model on it for each frame so that every frame, this data could be compared to a JSON file of the stills from one of the other videos (which are all preloaded in in setup()). Four functions, findPositions(), getCurrentFrameposition(), getFrameJSONDistance() and findLowestDistance(), as you can see in the code, deal with the comparisons. Initially I used the dist() function that is within the p5.js library but calculating each position using the powers of each keyframe coordinate served to be a more accurate and quicker operation.
In the console, you can see that every frame, each frame distance is pushed into an object and the minimum still is printed with the corresponding value. These are then used to print the correct still into the screen. The value was found using some code from Šime Vidas[vi]
OUTCOME
The final video outcome is a choppy sequence which is a mix of the input video and the file of still images. To capture the video I screen recorded the canvas, this is limited in the sense that the computer struggles to deal with running the code and capturing the screen at the same time, so the final video has quite a lot of lag. For the final film I used the scene1outfit1 stills overlayed over the scene1outfit2 video, and for the second part I used the scene2outfit1 stills over scene2outfit2. I then added some distorted background music to represent the music that the dancer is listening to in the headphones and put the original audio with it.
[i] Tyler Henry, “kinemetagraph - process footage”
[ii] Florida Water Daily “Extracting Still Images from Video with FFMPEG”
[iii] https://stackoverflow.com/a/20460414
[iv] https://stackoverflow.com/a/30800715
[v] Maresque Scott, “PUMPED UP KICKS/DUBSTEP”
[vi] https://stackoverflow.com/a/11143045
1 note · View note
simlycutenesz · 2 years
Text
Tumblr media
“EVERY BIT OF PRETTY” Posepack.
6 Single Poses
Can be used in blender
For more pics visit my Instagram
Items that you need:
Lefhandbag to your own liking
Righthandbag to your own liking
iPhone Righthand here
Fendi handbag here (patreon exclusive)
Term of use:
Do NOT put my work behind any Paywall (Adfly, Patreon, etc.)
Do NOT steal or claim my work as your own
Do NOT convert without premission
Disclaim:
Pack does NOT include the Blender scene or any other CC in the picture.
Download (SFS, Free)
Make sure you tag me, @Simlycutenesz.Poses on Instagram or @simlycutenesz​ on Tumblr so that your cuteself can be posted.
If you run into any difficulties or if you may have any questions, don’t hesitate to message me.
483 notes · View notes
bultae-ts4 · 3 years
Photo
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
[BULTAE] POSE PACK N19
Includes:
10 single poses for adults.
You will need:
Poseplayer [DL]
Teleporter [DL]
Hat (optional) [DL]
T.O.U:
Do NOT claim as yours. Do NOT re-edit. Do NOT reupload to other pages. Do NOT include in folders. Do NOT repost with paywall.
DOWNLOAD (SFS No Adds)
Tag me here/Instagram if you use my poses! I would love to share your posts!
Thanks to all CC creators! 🤍
@ts4-poses
682 notes · View notes
simmireen · 1 year
Photo
Tumblr media Tumblr media
♥ DAY FOURTEEN ♥ simmireen goes santareen ♥ it’s not about how much we give, but how much love we put into giving
on DAY FOURTEEN I give you ...
'cross-legged’ 8 poses for your talking, flirting, sitting and wine-drinking male sim sitting cross-legged  ♥ You need: Wine-glass (stem) Shout-out to TheAwfulGaymer, you know why  ♥
DOWNLOAD (SFS) DOWNLOAD (Patreon) (always free!)
♥~♥
Tumblr media
The poses work with Teleport any Sim and Andrew’s Pose Player The posepack is as usual provided with previews. These poses are somewhat gender-neutral, but there can be minor clipping or floating because every sim-body is different. I really would like to see if you use my poses! So tag me at tumblr, instagram or twitter (@simmireen) You can find an overview of all my posepacks at Pinterest You can support me on my Ko-Fi page > but never feel obliged to tip! Terms of use Don’t claim as yours or put behind a paywall Don’t re-edit (adjusting hands is always allowed, just don’t change up my pose) Don’t reupload Oh, and let me know if something doesn’t work! @ts4-poses​​​​​ @emilyccfinds​​​​​ @sssvitlanz​​​​​ thank you for reblogging <3
160 notes · View notes
evieduraine · 1 year
Photo
Tumblr media Tumblr media
[evieduraine] Wednesday Addams
Inspired by the Netflix series "Wednesday", because I loved it way too much.
This pack contains 4 single poses.
You need:
✖ Pose Player and Teleport Any Sim
✖ cello and bow by treefriend
✖ umbrella by soloriya
TOU:
✖ Please don't claim as your own, don't re-upload or re-edit.
______________________________________________________________  
Tag me if you use them, I want to see your creations. 🖤
✖ Instagram  
______________________________________________________________  
DOWNLOAD (patreon, free)
______________________________________________________________  
@ts4-poses @emilyccfinds @maxismatchccworld
342 notes · View notes
simmingcawala · 6 months
Text
Halloween CATBABE pose pack
Tumblr media Tumblr media
pose pack intended for halloween
consist of 7 in-game poses, all cat like lol
CLICK here
THANK YOU TO ALL THE CC CREATORS!!!!
4 notes · View notes
posesandccbyws4s · 8 months
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
Hi :) long time no see! This pose pack is continuation of the previous post. My inspiration were many of instagram's creative models <3 Hope you like it and use it :)
Enjoy! <3
Pose pack includes 6 single poses.
Please tag me on Instagram or Tumblr if you use these poses! I'd love to see it in your stories! @posesandccbyws4s <3
You will need:
Pose Mod & Teleporter X
Chair by Syboulette X
Hat acc by Mell Bennett X 
Free on my Patreon
3 notes · View notes
oherensparkles · 3 years
Text
Tumblr media
So happy to finally have some nails in game, made this pack to showcase all nail sizes 💜
Nailed It! is a pack of 4 generic poses for the Gallery which means they work for all genders.
Download poses here
Download sim here
No More Mirroring Mod for easier pose use
247 notes · View notes
artsyccfindss3 · 6 months
Text
Zachary Quinto
0 notes