Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
Science

Does Quantum Theory Explain Consciousness? 729

astroengine writes "Quantum theory is often seen as the root cause of unrelated, mysterious phenomena. Take consciousness for example. British physicist Roger Penrose recently argued 'that we will need to invoke 'new physics and exotic biological structures': rewriting quantum theory to make sense of consciousness.' But why do this, especially as there is no apparent causal link between quantum mechanics and the conscious mind? There appears to be a very basic logical fallacy here that even the most prominent physicists seem to be making."

Comment Re:GUI and CLUI: Two Great Tastes ... (Score 1) 317

There are people who memorize key commands for accessing menu items so thoroughly that they use the keyboard almost exclusively even in gui programs. Also, there ~are programs with a build-in application specific shell; cad programs have a long tradition of this. Gvim is also a good example, illustrating both a built-in shell, as well as menus that make a wide variety of commands easily discoverable for noobs.

Comment Re:Graphics processor? (Score 1) 142

Graphics processors' architecture resembles that of a CPU with hundreds (thousands?) of parallel cores.

Cpu is more like 6 cores, with 4 (or soon 8) single precision width vector units. For cuda, it's more like 16 cores, with 32 (or 64 depending on how you're counting) width single precision vector units. Nvidia marketing uses a funny definition of "core"; an cuda SMP is roughly analogous to a cpu core running at a much slower clock, but with a much wider vector unit.

Comment Stereo camera and stereo viewer! (Score 1) 215

I think a lot of people are downplaying the historic value of this device as the first stereo camera that the vast majority of consumers (and especially kids) will lay their hands on.

It is cheap,
It fits in your pocket,
It records images to standard media,
it doubles as a glasses-free viewer for the images it takes.

The resolution isn't great, there is a better (but almost twice as expensive) digital stereo camera on the market for stereo enthusiasts, and film stereo photography is as old as the sun, but the kids don't care about any of that. For the most part they will view the 3DS as the birth of home stereo photography.

Comment Re:biomimetic for purely philosophical reasons (Score 1) 165

Yes it is compatible in the sense that with some temporal filtering you can probably convert the event-based representation to a difference image representation (and this is probably what I'd do if someone forced me to use this sensor for my work), but then you're stuck with the disadvantages of both representations.

Comment biomimetic for purely philosophical reasons (Score 5, Informative) 165

I have seen this demo in person and chatted at length with its creator. It uses a custom sensor chip that does some analog temporal filtering and thresholding of light intensity at each pixel, sending events when the threshold is crossed. The intent of the authors seems to be to mimic the human visual system in silicon, even if it makes no engineering sense whatsoever. The demo was extremely sensitive to fluorescent lighting; the author had to run out and buy an incandescent desk lamp to get it to work at all. The event-based image representation makes it incompatible with everything that has been learned in computer vision over the last decade.

Image

Advent Calendar For Geeks Screenshot-sm 65

bLanark writes "Well, as children and adults all over the world begin their day with chocolate, with the traditional Advent calendar, I'd like to remind you that there's an alternative for geeks. The Perl Advent calendar will give you a new Perl tip every day right up to Christmas."

Comment Re:No multi-dimensional arrays (Score 1) 434

Are you a programmer? Intelligently choosing the layout of your data is a significant part of writing high performance code. It is not some exotic hack. It is supported in all of the languages one uses for writing high performance code (C, C++, Fortran, CUDA, OpenCL, etc.).

None of those languages have a ~standard strided array type, and library writers have produced a huge mess of incompatible matrix types as a result. Golang is headed down the same path.

Comment Re:No multi-dimensional arrays (Score 1) 434

Here's another example... They currently have an image reading library that has its own image type.

It doesn't support slicing out a sub-array to get a sub-image, i.e. im[10:20, 10:20, :]. It doesn't support slicing out the channel you want, i.e. im[:,:,0] for Red channel. It doesn't support even basic math operations, i.e. adding together two images. All of this is stuff that should get implemented in a very general, standardized way. The same will go for multi-channel audio data. If someone core to the project doesn't act quickly, it will be increasingly difficult to even achieve uniformity within the Go standard library.

Slashdot Top Deals

If I have seen farther than others, it is because I was standing on the shoulders of giants. -- Isaac Newton

Working...