Skip to content

Subscribe to PixelSham.com RSS for free

3Dprinting (184) A.I. (914) animation (354) blender (219) colour (241) commercials (53) composition (154) cool (375) design (659) Featured (93) hardware (319) IOS (109) jokes (140) lighting (300) modeling (160) music (189) photogrammetry (198) photography (757) production (1309) python (103) quotes (500) reference (318) software (1380) trailers (309) ves (576) VR (221)

POPULAR SEARCHES unreal | pipeline | virtual production | free | learn | photoshop | 360 | macro | google | nvidia | resolution | open source | hdri | real-time | photography basics | nuke

  • Explore Posts
  • Job Postings
  • ReelMatters.com
  • About and Contact
    • About And Contact
    • Portfolio
    • Privacy Policy
    • RSS feed page

BREAKING NEWS

LATEST POSTS

  • Storyboards to 3d with one cilck – MagiCam + Blender + TV Paint

    pIXELsHAM.com
    Aug 5, 2025
    blender

    Views : 7
  • Capcut Seedream 3.0 – AI-powered editor for everyone

    pIXELsHAM.com
    Aug 5, 2025
    A.I., production, software

    https://www.capcut.com/

    Views : 14
  • Tommy Og – Ultimate Python Guide, From Zero to Hero

    pIXELsHAM.com
    Aug 4, 2025
    python
    TommyOg_UltimatePythonGuideDownload
    Views : 19
  • Introduction to BytesIO

    pIXELsHAM.com
    Aug 1, 2025
    python

    When you’re working with binary data in Python—whether that’s image bytes, network payloads, or any in-memory binary stream—you often need a file-like interface without touching the disk. That’s where BytesIO from the built-in io module comes in handy. It lets you treat a bytes buffer as if it were a file.

    What Is BytesIO?

    • Module: io
    • Class: BytesIO
    • Purpose:
      • Provides an in-memory binary stream.
      • Acts like a file opened in binary mode ('rb'/'wb'), but data lives in RAM rather than on disk.
    from io import BytesIO
    

    Why Use BytesIO?

    1. Speed
      • No disk I/O—reads and writes happen in memory.
    2. Convenience
      • Emulates file methods (read(), write(), seek(), etc.).
      • Ideal for testing code that expects a file-like object.
    3. Safety
      • No temporary files cluttering up your filesystem.
    4. Integration
      • Libraries that accept file-like objects (e.g., PIL, requests) will work with BytesIO.

    Basic Examples

    1. Writing Bytes to a Buffer

    from io import BytesIO
    
    # Create a BytesIO buffer
    buffer = BytesIO()
    
    # Write some binary data
    buffer.write(b'Hello, \xF0\x9F\x98\x8A')  # includes a smiley emoji in UTF-8
    
    # Retrieve the entire contents
    data = buffer.getvalue()
    print(data)                 # b'Hello, \xf0\x9f\x98\x8a'
    print(data.decode('utf-8')) # Hello, 😊
    
    # Always close when done
    buffer.close()
    
    (more…)
    Views : 17
  • Marigold – repurposing diffusion-based image generators for dense predictions

    pIXELsHAM.com
    Jul 31, 2025
    A.I.

    Marigold repurposes Stable Diffusion for dense prediction tasks such as monocular depth estimation and surface normal prediction, delivering a level of detail often missing even in top discriminative models.

    Key aspects that make it great:
    – Reuses the original VAE and only lightly fine-tunes the denoising UNet
    – Trained on just tens of thousands of synthetic image–modality pairs
    – Runs on a single consumer GPU (e.g., RTX 4090)
    – Zero-shot generalization to real-world, in-the-wild images

    https://mlhonk.substack.com/p/31-marigold

    https://arxiv.org/pdf/2505.09358

    https://marigoldmonodepth.github.io/

    Views : 7
  • Hunyuan3D World Model 1.0

    pIXELsHAM.com
    Jul 28, 2025
    A.I., modeling

    Project Page:https://3d-models.hunyuan.tencent.com/world/
    Try it now:https://3d.hunyuan.tencent.com/sceneTo3D
    Github:https://github.com/Tencent-Hunyuan/HunyuanWorld-1.0
    Hugging Face:https://huggingface.co/tencent/HunyuanWorld-1

    Views : 30
  • Runway Aleph

    pIXELsHAM.com
    Jul 25, 2025
    A.I., production

    https://runwayml.com/research/introducing-runway-aleph

    Generate New Camera Angles
    Generate the Next Shot
    Use Any Style to Transfer to a Video
    Change Environments, Locations, Seasons and Time of Day
    Add Things to a Scene
    Remove Things from a Scene
    Change Objects in a Scene
    Apply the Motion of a Video to an Image
    Alter a Character’s Appearance
    Recolor Elements of a Scene
    Relight Shots
    Green Screen Any Object, Person or Situation

    Oscar Marchal – Aleph test

    Views : 41
  • Your Smartphone Can Make 3D “Holograms” – Versatile Framework for Low-Cost Parallax Multi-View 360° Displays

    pIXELsHAM.com
    Jul 25, 2025
    3Dprinting, cool, hardware, lighting

    https://makerworld.com/en/models/793871

    https://holopot360.github.io/website/

    The Andotrope – The World’s First Omnidirectional Hologram-like Screen
    Views : 14
  • The Magnetic Shadows Effect

    pIXELsHAM.com
    Jul 25, 2025
    cool, lighting

    Views : 12
  • Decart AI Mirage – The first ever World Transformation Model – turning any video, game, or camera feed into a new digital world, in real time

    pIXELsHAM.com
    Jul 25, 2025
    Featured

    https://mirage.decart.ai/

    https://about.decart.ai/publications/mirage

    Views : 15
  • Mike Wong – AtoMeow – A Blue noise image stippling in Processing

    pIXELsHAM.com
    Jul 24, 2025
    design, software

    https://github.com/mwkm/atoMeow

    https://www.shadertoy.com/view/7s3XzX

    This demo is created for coders who are familiar with this awesome creative coding platform. You may quickly modify the code to work for video or to stipple your own Procssing drawings by turning them into PImage and run the simulation. This demo code also serves as a reference implementation of my article Blue noise sampling using an N-body simulation-based method. If you are interested in 2.5D, you may mod the code to achieve what I discussed in this artist friendly article.

    Convert your video to a dotted noise.

    Views : 31
  • Aitor Echeveste – Free CG and Comp Projection Shot, Download the Assets & Follow the Workflow

    pIXELsHAM.com
    Jul 24, 2025
    production, reference

    What’s Included:

    • Cleaned and extended base plates
    • Full Maya and Nuke 3D projection layouts
    • Bullet and environment CG renders with AOVs (RGB, normals, position, ID, etc.)
    • Explosion FX in slow motion
    • 3D scene geometry for projection
    • Camera + lensing setup
    • Light groups and passes for look development

    https://aitorecheveste.gumroad.com/l/flbeqr

    Views : 17
  • Tauseef Fayyaz About readable code – Clean Code Practices

    pIXELsHAM.com
    Jul 24, 2025
    python

    𝗛𝗲𝗿𝗲’𝘀 𝘄𝗵𝗮𝘁 𝘁𝗼 𝗺𝗮𝘀𝘁𝗲𝗿 𝗶𝗻 𝗖𝗹𝗲𝗮𝗻 𝗖𝗼𝗱𝗲 𝗣𝗿𝗮𝗰𝘁𝗶𝗰𝗲𝘀:

    🔹 Code Readability & Simplicity – Use meaningful names, write short functions, follow SRP, flatten logic, and remove dead code.
    → Clarity is a feature.

    🔹 Function & Class Design – Limit parameters, favor pure functions, small classes, and composition over inheritance.
    → Structure drives scalability.

    🔹 Testing & Maintainability – Write readable unit tests, avoid over-mocking, test edge cases, and refactor with confidence.
    → Test what matters.

    🔹 Code Structure & Architecture – Organize by features, minimize global state, avoid god objects, and abstract smartly.
    → Architecture isn’t just backend.

    🔹 Refactoring & Iteration – Apply the Boy Scout Rule, DRY, KISS, and YAGNI principles regularly.
    → Refactor like it’s part of development.

    🔹 Robustness & Safety – Validate early, handle errors gracefully, avoid magic numbers, and favor immutability.
    → Safe code is future-proof.

    🔹 Documentation & Comments – Let your code explain itself. Comment why, not what, and document at the source.
    → Good docs reduce team friction.

    🔹 Tooling & Automation – Use linters, formatters, static analysis, and CI reviews to automate code quality.
    → Let tools guard your gates.

    🔹 Final Review Practices – Review, refactor nearby code, and avoid cleverness in the name of brevity.
    → Readable code is better than smart code.

    Tauseef Fayyaz About readable code – Clean Code Practices_compressedDownload
    Views : 11
  • Mark Theriault “Steamboat Willie” – AI Re-Imagining of a 1928 Classic in 4k

    pIXELsHAM.com
    Jul 24, 2025
    A.I., trailers

    I ran Steamboat Willie (now public domain) through Flux Kontext to reimagine it as a 3D-style animated piece. Instead of going the polished route with something like W.A.N. 2.1 for full image-to-video generation, I leaned into the raw, handmade vibe that comes from converting each frame individually. It gave it a kind of stop-motion texture, imperfect, a bit wobbly, but full of character.

    Views : 31
  • Glen Keane- Tarzan Construction Sheets + Chalk Talks

    pIXELsHAM.com
    Jul 24, 2025
    animation, design
    Glen Keane- Tarzan Construction Sheets + Chalk TalksDownload
    Views : 10
Previous Page
1 … 7 8 9 10 11 … 436
Next Page

FEATURED POSTS

  • Bartosz Ciechanowski – Cameras and lenses

    pIXELsHAM.com
    Dec 8, 2020
    composition, lighting, photography

    https://ciechanow.ski/cameras-and-lenses/

     

     

    Views : 746
  • A.I. – Deeper metrics of Christmas by Jim Meskimen

    pIXELsHAM.com
    Dec 27, 2019
    A.I.

    Views : 1,100
  • Samsung – Gear 360 is a VR consumer-friendly 360-degree camera

    pIXELsHAM.com
    Feb 23, 2016
    photography, VR

    http://9to5google.com/2016/02/21/samsungs-gear-360-is-a-consumer-friendly-360-degree-camera-coming-in-q2/

    Views : 1,283
  • Survivorship Bias: The error resulting from systematically focusing on successes and ignoring failures. How a young statistician saved his planes during WW2.

    pIXELsHAM.com
    Sep 25, 2023
    Featured, quotes

    A young statistician saved their lives.

     His insight (and how it can change yours):
    During World War II, the U.S. wanted to add reinforcement armor to specific areas of its planes.
    Analysts examined returning bombers, plotted the bullet holes and damage on them (as in the image below), and came to the conclusion that adding armor to the tail, body, and wings would improve their odds of survival.

     But a young statistician named Abraham Wald noted that this would be a tragic mistake. By only plotting data on the planes that returned, they were systematically omitting the data on a critical, informative subset: The planes that were damaged and unable to return.

    (more…)
    Views : 259
  • 59 AI Filmmaking Tools For Your Workflow

    pIXELsHAM.com
    Jul 10, 2024
    A.I., Featured, production, software

    https://curiousrefuge.com/blog/ai-filmmaking-tools-for-filmmakers

     

    1. Runway
    2. PikaLabs
    3. Pixverse (free)
    4. Haiper (free)
    5. Moonvalley (free)
    6. Morph Studio (free)
    7. SORA
    8. Google Veo
    9. Stable Video Diffusion (free)
    10. Leonardo
    11. Krea
    12. Kaiber
    13. Letz.AI
    14. Midjourney
    15. Ideogram
    16. DALL-E
    17. Firefly
    18. Stable Diffusion
    19. Google Imagen 3
    20. Polycam
    21. LTX Studio
    22. Simulon
    23. Elevenlabs
    24. Auphonic
    25. Adobe Enhance
    26. Adobe’s AI Rotoscoping
    27. Adobe Photoshop Generative Fill
    28. Canva Magic Brush
    29. Akool
    30. Topaz Labs
    31. Magnific.AI
    32. FreePik
    33. BigJPG
    34. LeiaPix
    35. Move AI
    36. Mootion
    37. Heygen
    38. Synthesia
    39. Chat GPT-4
    40. Claude 3
    41. Nolan AI
    42. Google Gemini
    43. Meta Llama 3
    44. Suno
    45. Udio
    46. Stable Audio
    47. Soundful
    48. Google MusicML
    49. Viggle
    50. SyncLabs
    51. Lalamu
    52. LensGo
    53. D-ID
    54. WonderStudio
    55. Cuebric
    56. Blockade Labs
    57. Chat GPT-4o
    58. Luma Dream Machine
    59. Pallaidium (free)
    Views : 126
  • White Balance is Broken!

    pIXELsHAM.com
    Aug 16, 2025
    colour, Featured, lighting, photography

    Views : 8
  • Drawings by Akiya Kageichi

    pIXELsHAM.com
    Jan 16, 2021
    design

    https://twitter.com/Akiya_kageichi

    Views : 1,089
  • Wētā FX – Compositing and Lighting Godzilla X Kong: The New Empire

    pIXELsHAM.com
    Apr 27, 2025
    lighting, production

    Views : 21
Views : 17,992

RSS feed page

Search


Categories


Archive


Disclaimer


Links and images on this website may be protected by the respective owners’ copyright. All data submitted by users through this site shall be treated as freely available to share.