|
Which class/jar file in fisheye hooks into subversion and GIT?
I want to use it to extend the functionality a bit.
Started by mrblah on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
See the lib/svn in your FishEye distribution for all the bits....
These aren't specific to FishEye.
For Subversion, FishEye can either use SVNKit (the pure-Java Subversion client) or JavaHL (the native bindings shipped with Subversion).
|
|
Hello,
I am trying to create lomo fisheye effect on an image using openGL. I am new to openGL, should I use cube mapping and fisheye projection? Is there any open source that I can refer to? Thanks.
Started by noear on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You'll have....
You can draw a single quad with the image textured onto it, and use a fragment shader to warp the texture coordinate per-pixel as you desire .
Comes with source.
Fisheye Quake , a modification of GLQuake, should be of interest to you.
|
|
I am looking for ways to create fisheye lens effect, looked at documentations for openCV, it looks like it contains Camera Calibration functions for radial distortions like fisheye. Is it possible to simulate fisheye distortion by openCV?
If it is possible...
Started by noear on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Regards
I created....
In OpenGL see this.
Do you want to use this distortion on sintetic images, or do you want to apply to a video camera or something ?
In OpenCv you should be able to do camera calibration (using the built-in functions, Zhang's algorithm) . .
|
Ask your Facebook Friends
|
According to the official installation guide, Fisheye is started in a command line, which is not applicable in a server environment where no user is logged on. Somebody knows a good way beyond INSTSRV / SRVANY?
Started by Mulmoth on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
If you find that Fisheye fails and abnormally ends, SRVANY won't restart....
Assuming this documentation refers to the version you're using, it looks like natively running as a Windows service still isn't in the product and using SRVANY is your best bet .
|
|
Has anyone ever given table columns the "fisheye" effect? Im talking about an expanding effect of the table columns when hovering the mouse over them. I'd love to see some code if anyone has tried this.
EDIT: ...or an accordian effect
Started by dittonamed on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
It's not for a table, but here is the effect:
http://safalra.com/web-design/javascript/mac-style-dock/
Columns are a whole lot trickier than rows, however I'd do like this:
Apply a unique CSS class to each TD per column Attach a MouseIn and MouseOut ... .
|
|
I found this: http://www.ndesign-studio.com/blog/design/css-dock-menu/
My problem, however, is that when setting
I’ve tried everything, but I can’t get the toolbar to be FIXED to the bottom of the screen. I.e. If the page has enough text to scroll, the...
Started by RD on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This solved the problem for me: http://www.wizzud.com/jqDock/
With this patch the jQuery interfaces fisheye (the best fisheye online at the moment) works after scrolling while it’s fixed positioned: jQuery Interfaces Fisheye position....
|
|
I am building a web application using Grails. I decided to use dojo and I added a dojo fisheye menu for begining in the main.gsp so it would be available on all the application's pages. It works fine for the (home) index.gsp page, but once I select another...
Started by albert green on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Did you try to move your dojo declaration and imports to your layout template page ... .
Using absolute URLs fixes the problem.
It is relative to the root so that's why the index works and not the other pages .
It is in the relative url to dojo's location.
|
|
I'm searching for existing scripts that will animate a vertical text menu by blurring text and zooming it according to the mouse pointer.
I'm trying to accomplish these actions:
1. OS X-like movement on mouse hover that can 'zoom' the text in and out
...
Started by Clayton Bellmor on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Here is an open source script that I think could work for you (Or at least after minor modifications)
http://marcgrabanski.com/pages/code/fisheye-menu
And a tutorial on using it: http://simply-basic.com/tools/fisheye-menu-for-your-website....
|
|
FISHEYE!! Are there any mega cheap fisheyes lenses, adaptors, etc?? Just want to try some fun stuff this coming year.
Started by NeoPho on
, 12 posts
by 10 people.
Answer Snippets (Read the full thread at thephotoforum):
However be aware that almost all of them are going to be low grade options (and that the majority are aimed at the point ... .
Head over to ebay and search, I'm sure there are loads of fisheye adaptors that will screw/clip onto the end of your lens.
|
|
I'm using Zend_Navigation (sweet addition to the framework, btw) to build my menu, after which it should be rendered in the page (self-evidently). I first set the container somewhere in the controller:
// $pages is the array containing all page information...
Started by JorenB on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's what I ended up doing though:
First, instead of rendering the default menu() call, create a partial to render into:
// menu.phtml is partial, cms is module $partial = array... .
I haven't seen the way yet either in terms of making a custom renderer .
|