Large optical image rotation for project

AI Thread Summary
The discussion focuses on a project involving optical image rotation for interior decoration, with the user seeking a cost-effective solution for a 1-meter size device. They express interest in constructing the device themselves, given their low quality requirements and flexibility in rotation angles. Suggestions include creating an acrylic prism with a secondary trapezoidal prism to achieve the desired image manipulation. The conversation also touches on the potential use of mirrors, similar to those in a periscope, to aid in the image redirection. Overall, the user is exploring DIY options for optical image rotation while utilizing available resources at their university lab.
pex
Messages
1
Reaction score
0
Hi, fellow physics friends!

I'm doing a small interior decoration project in which I need optical image rotation as a component. I know that this can be done (see e.g. http://www.optics.arizona.edu/optomech/papers/swift%201972.pdf for a review paper). I've also seen Half-Penta Prisms sold online that do this.
However, a 25mm HPP costs $135. I want one which is about 1 meter in size, but on the other hand I have very low requirements on quality (a bit of optical disturbance is just positive) and the image need not be rotated 45 degrees (less or more is fine).

Question: is it realistic to attempt to construct one myself? How would I go about to do this? I do have access to a small engineering lab at my local university. What material would you recommend?

Note: The project is not to construct a death star with a death ray with which I can destroy planets insolent enough to defy my imperial will.
 
Last edited by a moderator:
Engineering news on Phys.org
thsi is some codes about image rotate, not sure if it is what you are asking for.
Imports System.IO
Imports System.Drawing.Printing
Imports RasterEdge.Imaging
Imports RasterEdge.Imaging.Processing

Dim Image As New RasterEdgeImaging()

Public Sub RotateImage()
If True Then
Dim LoadImage As New Bitmap("C:\\1.bmp")
Dim rotate As Graphics = Graphics.FromImage(LoadImage)
rotate.TranslateTransform(CType(bmp.Width, Single) / 2, CType(bmp.Height, Single) / 2)
rotate.RotateTransform(rotationAngle)
rotate.TranslateTransform(-CType(bmp.Width, Single) / 2, -CType(bmp.Height, Single) / 2)
rotate.InterpolationMode = InterpolationMode.HighQualityBicubic
rotate.DrawImage(img, New Point(0, 0))
rotate.Dispose()
Return LoadImage()
End If
End Sub
 
pex said:
Note: The project is not to construct a death star with a death ray with which I can destroy planets insolent enough to defy my imperial will.

Well, nuts! I was all-in and even would have sponsored you until you dropped that little nugget of bad news... :-p

By the bye, your link goes to "Page Not Found".
 
the link dint work for me,

im not sure if this is what you mean but...

if your trying to displace and/or re-orient a projected image then
i think you could make an acryllic prisim with a seconday trapizoidal prizim inside
trial and error would tell you how to set it up right but it should redirect, reorient and even distort the image if wanted

im not sure what actual material and/or shape a prizim might have to be though

for some reason i want to believe it would work in a similar maner as the mirrors of a parascope
whereas the edge/sides would be potential mirrors
 
Hi all, I have a question. So from the derivation of the Isentropic process relationship PV^gamma = constant, there is a step dW = PdV, which can only be said for quasi-equilibrium (or reversible) processes. As such I believe PV^gamma = constant (and the family of equations) should not be applicable to just adiabatic processes? Ie, it should be applicable only for adiabatic + reversible = isentropic processes? However, I've seen couple of online notes/books, and...
I have an engine that uses a dry sump oiling system. The oil collection pan has three AN fittings to use for scavenging. Two of the fittings are approximately on the same level, the third is about 1/2 to 3/4 inch higher than the other two. The system ran for years with no problem using a three stage pump (one pressure and two scavenge stages). The two scavenge stages were connected at times to any two of the three AN fittings on the tank. Recently I tried an upgrade to a four stage pump...
Back
Top