# Wireframe images

**URL:** https://discourse.processing.org/t/wireframe-images/21621
**Category:** Project Guidance
**Tags:** homework
**Created:** [June 6, 2020, 1:51pm UTC](https://discourse.processing.org/t/wireframe-images/21621 "2020-06-06T13:51:27Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![gatz\_gaz](https://avatars.discourse-cdn.com/v4/letter/g/bb73d2/32.png) [@gatz\_gaz](https://discourse.processing.org/u/gatz_gaz)
#### Post date: [June 6, 2020, 1:51pm UTC](https://discourse.processing.org/t/wireframe-images/21621/1 "2020-06-06T13:51:27Z")

</div>

> please format code with \</\> button \* [homework policy](https://discourse.processing.org/faq/#homework) \* [asking questions](https://discourse.processing.org/t/2147)

Hi, guys! Does anyone know if there’s a code that turns the images this way?

 ![DIGiEEYUQAA7QBm](https://canada1.discourse-cdn.com/flex036/uploads/processingfoundation1/original/2X/3/3ae75b4c3b14a53a594f1b321623ab42cee39d2b.jpeg)

---

<div class="post-metadata">

### Author: ![josephh](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/josephh/32/210_2.png) [@josephh](https://discourse.processing.org/u/josephh)
#### Post date: [June 6, 2020, 2:58pm UTC](https://discourse.processing.org/t/wireframe-images/21621/2 "2020-06-06T14:58:18Z")

</div>

Hi,

The easiest way is to create or generate a 3d model of a human body and then load it into Processing and rendering it with P3D :

[https://processing.org/tutorials/p3d/](https://processing.org/tutorials/p3d/)

By using `noFill()` and `stroke(color)` you can get this wireframe effect.

![](https://processing.org/tutorials/p3d/imgs/primitives3D.png)

Alternatively, you can use the free and open source 3d software [Blender](https://www.blender.org). (you should really try it it’s amazing 😉)

---

<div class="post-metadata">

### Author: ![jeremydouglass](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/jeremydouglass/32/20_2.png) [@jeremydouglass](https://discourse.processing.org/u/jeremydouglass)
#### Post date: [June 8, 2020, 3:28pm UTC](https://discourse.processing.org/t/wireframe-images/21621/3 "2020-06-08T15:28:23Z")

</div>

If you turn your image into a collection of points, then you can also use the Mesh library to create a voronoi diagram of the point set.

- [https://forum.processing.org/two/discussion/10798/arrayindex-error-on-voronoi-diagram-with-byron-s-mesh-lib](https://forum.processing.org/two/discussion/10798/arrayindex-error-on-voronoi-diagram-with-byron-s-mesh-lib)

- [http://leebyron.com/mesh/](http://leebyron.com/mesh/)

See also past projects such as Segmentation and Symptom

[http://www.flong.com/projects/zoo/](http://www.flong.com/projects/zoo/)
